From be9931e00f29347a5eb756a4ca39e326137a8814 Mon Sep 17 00:00:00 2001 From: brectanus Date: Fri, 21 Dec 2007 16:39:38 +0000 Subject: [PATCH] Make sure all tests pass. --- apache2/t/tfn/base64Decode.t | 4 ++-- apache2/t/tfn/hexDecode.t | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apache2/t/tfn/base64Decode.t b/apache2/t/tfn/base64Decode.t index d6dce8a6..59d88029 100644 --- a/apache2/t/tfn/base64Decode.t +++ b/apache2/t/tfn/base64Decode.t @@ -46,6 +46,6 @@ type => "tfn", name => "base64Decode", input => "VGVzdENhc2U=\0VGVzdENhc2U=", - output => "VGVzdENhc2U=\0VGVzdENhc2U=", - ret => 0, + output => "TestCase", + ret => 1, }, diff --git a/apache2/t/tfn/hexDecode.t b/apache2/t/tfn/hexDecode.t index 615b2c8b..ac6b4236 100644 --- a/apache2/t/tfn/hexDecode.t +++ b/apache2/t/tfn/hexDecode.t @@ -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, },