summaryrefslogtreecommitdiff
path: root/python/tests/error.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/error.py')
-rwxr-xr-xpython/tests/error.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/error.py b/python/tests/error.py
index 150f379b..da6d0c1f 100755
--- a/python/tests/error.py
+++ b/python/tests/error.py
@@ -36,9 +36,9 @@ if err != expect:
i = 10000
while i > 0:
try:
- doc = libxml2.parseFile("missing.xml")
+ doc = libxml2.parseFile("missing.xml")
except libxml2.parserError:
- got_exc = 1
+ got_exc = 1
err = ""
i = i - 1