diff options
author | Damien Laniel <dlaniel@entrouvert.com> | 2007-10-10 09:38:35 +0000 |
---|---|---|
committer | Damien Laniel <dlaniel@entrouvert.com> | 2007-10-10 09:38:35 +0000 |
commit | d0738a911f5377ba9ee757ce2d2da12e5a21bd39 (patch) | |
tree | 5fc051fa8ad207022015d0e310b68c341dc43da1 | |
parent | fab96ad726f0f75ec58bdc3202660f89a3c156a9 (diff) | |
download | lasso-d0738a911f5377ba9ee757ce2d2da12e5a21bd39.tar.gz lasso-d0738a911f5377ba9ee757ce2d2da12e5a21bd39.tar.xz lasso-d0738a911f5377ba9ee757ce2d2da12e5a21bd39.zip |
fixed error code
-rwxr-xr-x | python/tests/idwsf2_tests.py | 2 |
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') |