--- CBOR-XS/t/52_object.t 2013/10/28 22:59:39 1.3 +++ CBOR-XS/t/52_object.t 2013/11/30 18:13:53 1.9 @@ -1,4 +1,5 @@ BEGIN { $| = 1; print "1..20\n"; } +BEGIN { $^W = 0 } # hate use CBOR::XS; @@ -40,7 +41,7 @@ $obj = bless { k => 1 }, CBOR::XS::freeze::; $enc = encode_cbor $obj; -print $enc eq (pack "H*", "d90100845043424f523a3a58533a3a667265657a65030102") ? "" : "not ", "ok 12\n"; +print $enc eq (pack "H*", "d81a845043424f523a3a58533a3a667265657a65030102") ? "" : "not ", "ok 12 ", (unpack "H*", $enc), "\n"; $dec = decode_cbor $enc; print $dec eq 777 ? "" : "not ", "ok 19\n";