diff options
Diffstat (limited to 'RPM4/t/02header.t')
-rw-r--r-- | RPM4/t/02header.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RPM4/t/02header.t b/RPM4/t/02header.t index b6ff323..52934e0 100644 --- a/RPM4/t/02header.t +++ b/RPM4/t/02header.t @@ -86,7 +86,7 @@ ok($string, "can get header as string"); my $hdl = File::Temp->new(UNLINK => 1); print $hdl $string; seek($hdl, 0, 0); -my $hdr2 = RPM4::stream2header($hdl); -isa_ok($hdr, "RPM4::Header", "can reparse header from a string"); +my $hdr2 = RPM4::stream2header($hdl, $magic); +isa_ok($hdr2, "RPM4::Header", "can reparse header from a string"); } } |