summaryrefslogtreecommitdiffstatshomepage
path: root/tests/io/file_with.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/io/file_with.py')
-rw-r--r--tests/io/file_with.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/io/file_with.py b/tests/io/file_with.py
index ee1e702422..899c0f9287 100644
--- a/tests/io/file_with.py
+++ b/tests/io/file_with.py
@@ -15,7 +15,7 @@ except:
# Regression test: test that exception in with initialization properly
# thrown and doesn't crash.
try:
- with open('__non_existent', 'r'):
+ with open("__non_existent", "r"):
pass
except OSError:
print("OSError")