From 744d39a42e3c19bd247276388b08744bb6e73089 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Wed, 28 May 2008 13:55:06 +0000 Subject: QPID-1095: another error code correction git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@660952 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/python/tests_0-10/dtx.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'qpid/python') diff --git a/qpid/python/tests_0-10/dtx.py b/qpid/python/tests_0-10/dtx.py index cea742b81c..796152794f 100644 --- a/qpid/python/tests_0-10/dtx.py +++ b/qpid/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): """ -- cgit v1.2.1