You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2018/04/27 16:10:05 UTC

qpid-interop-test git commit: NOJIRA: Minor fix to commit d7f76fb1cd7ed9962b26db19f1b2e31bb368ea3d on 04/26/2018: The receiver shims for amqp_types test format the returned values in a short hex format 0x1, so the test values must also use this format. C

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master b9a3ef265 -> 050b4f7f7


NOJIRA: Minor fix to commit d7f76fb1cd7ed9962b26db19f1b2e31bb368ea3d on 04/26/2018: The receiver shims for amqp_types test format the returned values in a short hex format 0x1, so the test values must also use this format. Changed 0x00 and 0x01 to 0x0 and 0x1 respectively.


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/050b4f7f
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/050b4f7f
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/050b4f7f

Branch: refs/heads/master
Commit: 050b4f7f795f5de650613625dd2cb8c59c0f1ea1
Parents: b9a3ef2
Author: Kim van der Riet <kv...@localhost.localdomain>
Authored: Fri Apr 27 12:09:52 2018 -0400
Committer: Kim van der Riet <kv...@localhost.localdomain>
Committed: Fri Apr 27 12:09:52 2018 -0400

----------------------------------------------------------------------
 src/python/qpid_interop_test/amqp_types_test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/050b4f7f/src/python/qpid_interop_test/amqp_types_test.py
----------------------------------------------------------------------
diff --git a/src/python/qpid_interop_test/amqp_types_test.py b/src/python/qpid_interop_test/amqp_types_test.py
index 02bf49a..b1150a7 100755
--- a/src/python/qpid_interop_test/amqp_types_test.py
+++ b/src/python/qpid_interop_test/amqp_types_test.py
@@ -143,8 +143,8 @@ class AmqpPrimitiveTypes(qpid_interop_test.qit_common.QitTestTypeMap):
                  u'0',
                  u'9',
                  u'}',
-                 u'0x00', # Hex representation
-                 u'0x01',
+                 u'0x0', # Hex representation
+                 u'0x1',
                  u'0x7f',
                  u'0x80',
                  u'0xff',


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org