Skip to content

Commit 4f0ae69

Browse files
committed
fix: incorrect logic after if to assert convertion
1 parent 8e00501 commit 4f0ae69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grading_lib/makefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def setUpClass(cls) -> None:
186186
cls.makefile_path = Path(cls.makefile_path)
187187

188188
assert (
189-
not cls.makefile_path.exists()
189+
cls.makefile_path.exists()
190190
), f"Expect a file '{cls.makefile_path}', but it does not exist."
191191

192192
cls.makefile = Makefile.from_path(cls.makefile_path)

0 commit comments

Comments
 (0)