Skip to content

Commit 9de82bc

Browse files
Document this PR change.
1 parent c5231b7 commit 9de82bc

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

doc/changes/latest.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ Changelog
7272
Bug
7373
~~~
7474

75+
- Fix a bug in :meth:`mne.source_estimate.MixedSourceEstimate.plot_surface` by `Christian O'Reilly`_.
76+
7577
- Fix :meth:`mne.io.Raw.anonymize` correctly reset ``raw.annotations.orig_time`` by `Luke Bloy`_.
7678

7779
- Fix date reading before Unix time zero (1970 Jan 1) on Windows by `Alex Rockhill`_.

mne/viz/tests/test_3d.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@
7676
0.1250 0.750e-03 0.750e-03 0.750e-03 0.000 0.000 1.000
7777
"""
7878

79-
rng = np.random.RandomState(0)
80-
8179

8280
def test_plot_head_positions():
8381
"""Test plotting of head positions."""
@@ -654,6 +652,7 @@ def test_mixed_sources_plot_surface():
654652
T = 2 # number of time points
655653
S = 3 # number of source spaces
656654

655+
rng = np.random.RandomState(0)
657656
data = rng.randn(N, T)
658657
vertno = S * [np.arange(N // S)]
659658

0 commit comments

Comments
 (0)