From d0738a911f5377ba9ee757ce2d2da12e5a21bd39 Mon Sep 17 00:00:00 2001 From: Damien Laniel Date: Wed, 10 Oct 2007 09:38:35 +0000 Subject: fixed error code --- python/tests/idwsf2_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/idwsf2_tests.py b/python/tests/idwsf2_tests.py index 9684090d..ce889b2e 100755 --- a/python/tests/idwsf2_tests.py +++ b/python/tests/idwsf2_tests.py @@ -1418,7 +1418,7 @@ class DataServiceQueryTestCase(IdWsf2TestCase): try: wsp_service.parseQueryItems() except lasso.Error, e: - if e[0] != lasso.LASSO_DST_ERROR_MISSING_SERVICE_DATA: + if e[0] != lasso.DST_ERROR_MISSING_SERVICE_DATA: self.fail(e) else: self.fail('query items parsing should have failed because no data was provided') -- cgit