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 | f849837073f71be6fb9472e768182c4c7eadd4d4 (patch) | |
| tree | 551749d1f1aa9ccbbd4430f0268e2a453391e6fd /python/tests_0-10 | |
| parent | 58787c964e568f363915844ee54f19b2b0f80940 (diff) | |
| download | qpid-python-f849837073f71be6fb9472e768182c4c7eadd4d4.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/qpid@592556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests_0-10')
| -rw-r--r-- | python/tests_0-10/dtx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests_0-10/dtx.py b/python/tests_0-10/dtx.py index 5ee4dd4c16..f84f91c75a 100644 --- a/python/tests_0-10/dtx.py +++ b/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 |
