diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2007-11-06 21:16:03 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2007-11-06 21:16:03 +0000 |
| commit | 338a887844bb11d2c3a02696f06d01bef3c3c51a (patch) | |
| tree | ff421866e7887b7b5633e1e1adfd203194562a53 /qpid/python | |
| parent | 82e58be2ca433d01ca0210d9d05671663d61d6b4 (diff) | |
| download | qpid-python-338a887844bb11d2c3a02696f06d01bef3c3c51a.tar.gz | |
updated pack param, however nothing was broken because first param is 0
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@592556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/tests_0-10/dtx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/tests_0-10/dtx.py b/qpid/python/tests_0-10/dtx.py index 5ee4dd4c16..f84f91c75a 100644 --- a/qpid/python/tests_0-10/dtx.py +++ b/qpid/python/tests_0-10/dtx.py @@ -601,7 +601,7 @@ class DtxTests(TestBase): def xid(self, txid): DtxTests.tx_counter += 1 branchqual = "v%s" % DtxTests.tx_counter - return pack('LBB', 0, len(txid), len(branchqual)) + txid + branchqual + return pack('!LBB', 0, len(txid), len(branchqual)) + txid + branchqual def txswap(self, tx, id): channel = self.channel |
