about summary refs log tree commit
diff options
context:
space:
mode:
-rw-r--r--t/datasend.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/datasend.t b/t/datasend.t
index 48655fa..5c785ba 100644
--- a/t/datasend.t
+++ b/t/datasend.t
@@ -40,7 +40,10 @@ sub check {
     $cmd->datasend($line);
   }
   $cmd->dataend;
-  is($cmd->output, $expect);
+  is(
+    unpack("H*",$cmd->output),
+    unpack("H*",$expect)
+  );
 }
 
 my $cmd;