From 2746e63e2866d2a7870e1ddc30a615a17ef99d62 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Tue, 28 Feb 2006 12:56:25 +0000 Subject: Fixed the test, daniel --- tests/error.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests') 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) -- cgit