Skip to content

Commit 8086c70

Browse files
authored
Fix
1 parent 632567d commit 8086c70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_execfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def test_pythonpath(self) -> None:
311311
run_python_module([TRY_EXECFILE])
312312
out, err = self.stdouterr()
313313
mod_globs = json.loads(out)
314-
assert os.cwd() not in mod_globs["path"]
314+
assert os.getcwd() not in mod_globs["path"]
315315
assert err == ""
316316

317317
def test_no_such_module(self) -> None:

0 commit comments

Comments
 (0)