Make sure all tests pass.

This commit is contained in:
brectanus
2007-12-21 16:39:38 +00:00
parent 402f6318bb
commit be9931e00f
2 changed files with 8 additions and 8 deletions

View File

@@ -31,20 +31,20 @@
type => "tfn",
name => "hexDecode",
input => "01234567890a0z01234567890a",
output => "01234567890a0z01234567890a",
ret => 0,
output => "\x01#Eg\x89\x0a#\x01#Eg\x89\x0a",
ret => 1,
},
{
type => "tfn",
name => "hexDecode",
input => "01234567890az",
output => "01234567890az",
ret => 0,
output => "\x01#Eg\x89\x0a",
ret => 1,
},
{
type => "tfn",
name => "hexDecode",
input => "01234567890a0",
output => "01234567890a0",
ret => 0,
output => "\x01#Eg\x89\x0a",
ret => 1,
},