summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/error.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/error.py b/tests/error.py
index 9979ed1..295f9a7 100755
--- a/tests/error.py
+++ b/tests/error.py
@@ -33,9 +33,10 @@ del conn
if errno == None:
print 'failed to get an error'
elif errno[0] == libvirt.VIR_ERR_NO_CONNECT or \
- errno[0] == libvirt.VIR_ERR_INVALID_DOMAIN:
+ errno[0] == libvirt.VIR_ERR_INVALID_DOMAIN or \
+ errno[0] == libvirt.VIR_ERR_GET_FAILED:
print "OK"
else:
- print 'got unexpected error %s' % (errno)
+ print 'got unexpected error:', errno
sys.exit(0)