You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2013/09/12 15:09:27 UTC

svn commit: r1522558 - /qpid/proton/trunk/tests/python/proton_tests/codec.py

Author: rhs
Date: Thu Sep 12 13:09:27 2013
New Revision: 1522558

URL: http://svn.apache.org/r1522558
Log:
added assert message

Modified:
    qpid/proton/trunk/tests/python/proton_tests/codec.py

Modified: qpid/proton/trunk/tests/python/proton_tests/codec.py
URL: http://svn.apache.org/viewvc/qpid/proton/trunk/tests/python/proton_tests/codec.py?rev=1522558&r1=1522557&r2=1522558&view=diff
==============================================================================
--- qpid/proton/trunk/tests/python/proton_tests/codec.py (original)
+++ qpid/proton/trunk/tests/python/proton_tests/codec.py Thu Sep 12 13:09:27 2013
@@ -261,7 +261,9 @@ class DataTest(Test):
     dst = Data()
     dst.copy(self.data)
 
-    assert dst.format() == self.data.format()
+    copy = dst.format()
+    orig = self.data.format()
+    assert copy == orig, (copy, orig)
 
   def testCopyNested(self):
     nested = [1, 2, 3, [4, 5, 6], 7, 8, 9]



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