Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erelsgl committed Aug 30, 2024
1 parent f7fdeef commit 3429f94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_FaStGen.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__])
2 changes: 1 addition & 1 deletion tests/test_look_ahead.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__])

0 comments on commit 3429f94

Please sign in to comment.