Merge pull request #1723 from palaviv/missing-assert

Add missing assert in stdlib_os snippet
This commit is contained in:
Jeong YunWon
2020-01-31 17:47:30 +09:00
committed by GitHub

View File

@@ -265,7 +265,7 @@ with TestWithTempDir() as tmpdir:
with TestWithTempCurrentDir():
os.chdir(tmpdir)
assert os.getcwd() == os.path.realpath(tmpdir)
os.path.exists(FILE_NAME)
assert os.path.exists(FILE_NAME)
# supports
assert isinstance(os.supports_fd, set)