diff --git a/tests/tfn/hexDecode.t b/tests/tfn/hexDecode.t index ac6b4236..b130d765 100644 --- a/tests/tfn/hexDecode.t +++ b/tests/tfn/hexDecode.t @@ -21,7 +21,7 @@ type => "tfn", name => "hexDecode", input => "546573740043617365", - output => "Test\0Case", + output => "Test00Case", ret => 1, }, @@ -31,20 +31,20 @@ type => "tfn", name => "hexDecode", input => "01234567890a0z01234567890a", - output => "\x01#Eg\x89\x0a#\x01#Eg\x89\x0a", + output => "01#Eg890a0z01#Eg890a", ret => 1, }, { type => "tfn", name => "hexDecode", input => "01234567890az", - output => "\x01#Eg\x89\x0a", + output => "01#Eg890az", ret => 1, }, { type => "tfn", name => "hexDecode", input => "01234567890a0", - output => "\x01#Eg\x89\x0a", + output => "01#Eg890a0", ret => 1, },