diff options
| author | Damien Laniel <dlaniel@entrouvert.com> | 2007-10-10 09:20:43 +0000 |
|---|---|---|
| committer | Damien Laniel <dlaniel@entrouvert.com> | 2007-10-10 09:20:43 +0000 |
| commit | 144f9bed565c2a92842e78c0c0514b820e65321b (patch) | |
| tree | ad86789f4a965ee86e1762804458f9116e974e76 /python | |
| parent | 68f6b2356c7be7d88e479107d8e8560b563e0c51 (diff) | |
| download | lasso-144f9bed565c2a92842e78c0c0514b820e65321b.tar.gz lasso-144f9bed565c2a92842e78c0c0514b820e65321b.tar.xz lasso-144f9bed565c2a92842e78c0c0514b820e65321b.zip | |
fix error code
Diffstat (limited to 'python')
| -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 43711f4d..9684090d 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.DST_ERROR_QUERY_FAILED: + if e[0] != lasso.LASSO_DST_ERROR_MISSING_SERVICE_DATA: self.fail(e) else: self.fail('query items parsing should have failed because no data was provided') |
