Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add missing assert
  • Loading branch information
palaviv committed Jan 31, 2020
commit 19ce0c6d7f93e9a485b5027463d9d45436e63a2a
2 changes: 1 addition & 1 deletion tests/snippets/stdlib_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
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)
Expand Down