summaryrefslogtreecommitdiff
path: root/tests/import/builtin_import.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/import/builtin_import.py')
-rw-r--r--tests/import/builtin_import.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/import/builtin_import.py b/tests/import/builtin_import.py
index 088f631fc..5258da891 100644
--- a/tests/import/builtin_import.py
+++ b/tests/import/builtin_import.py
@@ -1,16 +1,16 @@
# test calling builtin import function
# basic test
-__import__('builtins')
+__import__("builtins")
# first arg should be a string
try:
__import__(1)
except TypeError:
- print('TypeError')
+ print("TypeError")
# level argument should be non-negative
try:
- __import__('xyz', None, None, None, -1)
+ __import__("xyz", None, None, None, -1)
except ValueError:
- print('ValueError')
+ print("ValueError")