Skip to content

Commit 644a909

Browse files
committed
[ci] fix broken macos test
1 parent 00fe9b6 commit 644a909

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/run_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,8 +1265,8 @@ def test_surf2vol_fill(self):
12651265
self.assertAlmostEqual(np.sum(vol.astype(np.float32)) * 0.0001, 3.5536, 2)
12661266

12671267
def test_s2v(self):
1268-
vol = s2v(self.no, self.fc, fill=1)
1269-
self.assertAlmostEqual(np.sum(vol.astype(np.float32)) * 0.0001, 7.8651, 2)
1268+
vol = s2v(self.no, self.fc, 80, fill=1)
1269+
self.assertAlmostEqual(np.sum(vol.astype(np.float32)) * 0.0001, 31.4066, 2)
12701270

12711271

12721272
@unittest.skipIf(

0 commit comments

Comments
 (0)