diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-10-28 17:19:07 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-10-28 17:19:07 +0000 |
commit | 70e7f4334aa923abb819b9e6517cbef138946c14 (patch) | |
tree | bd3104e493cb72c4a62717d575720ea8a4dc9bfb /python/tests/codec010.py | |
parent | a9ff42414f14d97a631507ab10cc01f8a1d113c9 (diff) | |
download | qpid-python-70e7f4334aa923abb819b9e6517cbef138946c14.tar.gz |
fixed a bug in int16 codec
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@708615 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/codec010.py')
-rw-r--r-- | python/tests/codec010.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/tests/codec010.py b/python/tests/codec010.py index 835966e103..bbe894b7b3 100644 --- a/python/tests/codec010.py +++ b/python/tests/codec010.py @@ -86,3 +86,7 @@ class CodecTest(TestCase): def testArrayNone(self): self.check("array", None) + + def testInt16(self): + self.check("int16", 3) + self.check("int16", -3) |