From 2bfc452900f3eb7c43247007d73f3cad97540c1d Mon Sep 17 00:00:00 2001 From: Evan Hubinger Date: Sat, 31 Aug 2024 13:07:05 -0700 Subject: [PATCH] Fix prelude test --- coconut/tests/main_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coconut/tests/main_test.py b/coconut/tests/main_test.py index b0eb72e6..e911da59 100644 --- a/coconut/tests/main_test.py +++ b/coconut/tests/main_test.py @@ -1093,7 +1093,7 @@ class TestExternal(unittest.TestCase): if not PYPY or PY2: def test_prelude(self): with using_paths(prelude): - comp_prelude() + comp_prelude(expect_retcode=None) if MYPY and PY38: run_prelude()