diff options
-rwxr-xr-x | test/test_examples.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_examples.py b/test/test_examples.py index 995e624..12fe6d7 100755 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -455,7 +455,7 @@ def tst_open_unlink(mnt_dir): os.unlink(fullname) with pytest.raises(OSError) as exc_info: os.stat(fullname) - assert exc_info.value.errno == errno.ENOENT + assert exc_info.value.errno == errno.ENOENT assert name not in os.listdir(mnt_dir) fh.write(data2) fh.seek(0) |