diff options
author | Matthias Radestock <matthias@rabbitmq.com> | 2012-11-03 21:09:33 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@rabbitmq.com> | 2012-11-03 21:09:33 +0000 |
commit | bd2bd07fd063e6ce2b0d7e8c1589fff7ac1cd2ae (patch) | |
tree | 4af8d5357f7b7c249fe34d2b620456e4ac46476c | |
parent | cabb62c333032ec5a1a499e2336d8c6bb10aa580 (diff) | |
download | rabbitmq-server-bd2bd07fd063e6ce2b0d7e8c1589fff7ac1cd2ae.tar.gz |
fix testsbug25268
-rw-r--r-- | src/rabbit_tests.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index eb97f1d6..715aa186 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -444,10 +444,10 @@ test_content_properties() -> test_content_prop_encoding([{bit, true}, {octet, 123}, {octet, 123}, {bit, true}], <<16#F0,0,123,123>>), test_content_prop_encoding([{bit, true}, {shortstr, <<"hi">>}, {bit, true}, - {shortint, 54321}, {bit, true}], + {short, 54321}, {bit, true}], <<16#F8,0,2,"hi",16#D4,16#31>>), test_content_prop_encoding([{bit, true}, {shortstr, undefined}, {bit, true}, - {shortint, 54321}, {bit, true}], + {short, 54321}, {bit, true}], <<16#B8,0,16#D4,16#31>>), test_content_prop_encoding([{table, [{<<"a signedint">>, signedint, 12345678}, {<<"a longstr">>, longstr, <<"yes please">>}, |