diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/tests_0-10/dtx.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/tests_0-10/dtx.py b/python/tests_0-10/dtx.py index cea742b81c..796152794f 100644 --- a/python/tests_0-10/dtx.py +++ b/python/tests_0-10/dtx.py @@ -377,8 +377,7 @@ class DtxTests(TestBase010): session.dtx_end(xid=tx) self.fail("Attempted to end association with unknown xid, expected exception!") except SessionException, e: - #FYI: this is currently *not* the exception specified, but I think the spec is wrong! Confirming... - self.assertEquals(503, e.args[0].error_code) + self.assertEquals(409, e.args[0].error_code) def test_end(self): """ |