summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Laniel <dlaniel@entrouvert.com>2007-10-10 09:38:35 +0000
committerDamien Laniel <dlaniel@entrouvert.com>2007-10-10 09:38:35 +0000
commitd0738a911f5377ba9ee757ce2d2da12e5a21bd39 (patch)
tree5fc051fa8ad207022015d0e310b68c341dc43da1
parentfab96ad726f0f75ec58bdc3202660f89a3c156a9 (diff)
downloadlasso-d0738a911f5377ba9ee757ce2d2da12e5a21bd39.tar.gz
lasso-d0738a911f5377ba9ee757ce2d2da12e5a21bd39.tar.xz
lasso-d0738a911f5377ba9ee757ce2d2da12e5a21bd39.zip
fixed error code
-rwxr-xr-xpython/tests/idwsf2_tests.py2
1 files changed, 1 insertions, 1 deletions
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')