Skip to content

Commit 566491b

Browse files
committed
Fix to test comparator
1 parent a04d766 commit 566491b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brainbox/tests/test_modeling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ def test_dm_construct(self):
5959
npy_file = Path(__file__).parent.joinpath('fixtures', 'design_matrix_test.npy')
6060
if npy_file.exists():
6161
ref_dm = np.load(npy_file)
62-
self.assertEqual(self.design.dm, ref_dm)
62+
self.assertTrue(np.all(self.design.dm == ref_dm))

0 commit comments

Comments
 (0)