Skip to content

Commit 5b8f9ae

Browse files
committed
fix parsing in performance tests
1 parent 3b799ba commit 5b8f9ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/stardew_valley/test/performance/TestPerformance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def setUpClass(cls) -> None:
6161

6262
fill_tests_key = "fill"
6363
if fill_tests_key in os.environ:
64-
cls.skip_fill = not bool(os.environ[fill_tests_key])
64+
cls.skip_fill = os.environ[fill_tests_key] != "True"
6565

6666
fixed_seed_key = "fixed_seed"
6767
if fixed_seed_key in os.environ:

0 commit comments

Comments
 (0)