From: Daniel Veillard Date: Tue, 28 Feb 2006 12:56:25 +0000 (+0000) Subject: Fixed the test, daniel X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=97e7e798b2a934932535cc12da82f3dd01168d0c;p=libvirt.git Fixed the test, daniel --- diff --git a/python/tests/error.py b/python/tests/error.py index 9979ed1e15..295f9a72b2 100755 --- a/python/tests/error.py +++ b/python/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)