diff --git a/tests/test_FaStGen.py b/tests/test_FaStGen.py index 7c70b98..ef9a254 100644 --- a/tests/test_FaStGen.py +++ b/tests/test_FaStGen.py @@ -57,5 +57,5 @@ def test_FaStGen_edge_cases(): result = FaStGen(alloc=alloc, items_valuations=V_single) assert result == {"c1": ["s1"]}, "FaStGen algorithm failed on single student and single course" -if __name__ == "_main_": +if __name__ == "__main__": pytest.main(["-v", __file__]) \ No newline at end of file diff --git a/tests/test_look_ahead.py b/tests/test_look_ahead.py index b6e1d96..5b41bfc 100644 --- a/tests/test_look_ahead.py +++ b/tests/test_look_ahead.py @@ -70,5 +70,5 @@ def test_look_ahead_routine_edge_cases(): assert new_UpperFix_single == [], "Look Ahead Routine algorithm failed on single student and single course (UpperFix)" assert new_SoftFix_single == [], "Look Ahead Routine algorithm failed on single student and single course (SoftFix)" -if __name__ == "_main_": +if __name__ == "__main__": pytest.main(["-v", __file__]) \ No newline at end of file