Skip to content

Commit afb1f40

Browse files
committed
fixed failing tests
1 parent feed455 commit afb1f40

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/test_solver_math.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,8 @@ def test_single_source_matches_vanilla_lcmv(self, forward_model, sensor_info):
334334

335335
def test_full_rank_matches_multisource_lcmv(self, forward_model, sensor_info):
336336
"""At rank==l, MV-PURE should equal multi-source LCMV on the same H0."""
337-
from invert.solvers.beamformers.lcmv_mvpure import (
338-
SolverLCMVMVPURE,
337+
from invert.solvers.beamformers.lcmv_mvpure import SolverLCMVMVPURE
338+
from invert.solvers.beamformers.utils import (
339339
_lcmv_multisource_weights_from_inv_cov,
340340
)
341341

@@ -382,8 +382,8 @@ def test_reduced_rank_is_projected(self, forward_model, sensor_info):
382382
For r=1, the selected block K[sel,:] must have matrix rank <= 1 and
383383
should not increase the Frobenius norm relative to the full-rank filter.
384384
"""
385-
from invert.solvers.beamformers.lcmv_mvpure import (
386-
SolverLCMVMVPURE,
385+
from invert.solvers.beamformers.lcmv_mvpure import SolverLCMVMVPURE
386+
from invert.solvers.beamformers.utils import (
387387
_mvpure_projected_lcmv_weights_from_inv_cov,
388388
)
389389

0 commit comments

Comments
 (0)