Skip to content

Commit 3e6f379

Browse files
committed
fix tests
1 parent 9137050 commit 3e6f379

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_behavioral_subjective(self):
2828

2929
BehavioralSubjective.main()
3030
file_count_end = get_number_of_files_in_output()
31-
self.assertGreaterEqual(75, file_count_end) # pipeline should create 74 files + .gitkeep
31+
self.assertGreaterEqual(file_count_end, 75) # pipeline should create 74 files + .gitkeep
3232

3333
def test_behavioral_brain(self):
3434
empty_output_dir()
@@ -38,7 +38,7 @@ def test_behavioral_brain(self):
3838

3939
BehavioralBrain.main()
4040
file_count_end = get_number_of_files_in_output()
41-
self.assertGreaterEqual(13, file_count_end) # pipeline should create 12 files + .gitkeep
41+
self.assertGreaterEqual(file_count_end, 13) # pipeline should create 12 files + .gitkeep
4242

4343
def test_brain_activation(self):
4444
empty_output_dir()
@@ -48,7 +48,7 @@ def test_brain_activation(self):
4848

4949
BrainActivationAnalysis.main()
5050
file_count_end = get_number_of_files_in_output()
51-
self.assertGreaterEqual(211, file_count_end) # pipeline should create 210 files + .gitkeep
51+
self.assertGreaterEqual(file_count_end, 211) # pipeline should create 210 files + .gitkeep
5252

5353

5454
if __name__ == '__main__':

0 commit comments

Comments
 (0)