Skip to content

Commit 6a477fc

Browse files
committed
Remove test for filename when nit needed. Helps with EBCDIC support. #73
1 parent 648120d commit 6a477fc

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

t/006zip.t

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BEGIN {
1919
$extra = 1
2020
if eval { require Test::NoWarnings ; Test::NoWarnings->import; 1 };
2121

22-
plan tests => 115 + $extra ;
22+
plan tests => 113 + $extra ;
2323

2424
use_ok('IO::Compress::Zip', qw(:all)) ;
2525
use_ok('IO::Uncompress::Unzip', qw(unzip $UnzipError)) ;
@@ -419,7 +419,6 @@ EOM
419419
my $name = $u->getHeaderInfo()->{Name};
420420

421421
my $hdr = $u->getHeaderInfo();
422-
is $hdr->{Name}, 'hello.txt', "Name is 'hello.txt'";
423422
is $hdr->{Time}, 0, "Time is zero";
424423
}
425424

@@ -435,7 +434,6 @@ EOM
435434
my $name = $u->getHeaderInfo()->{Name};
436435

437436
my $hdr = $u->getHeaderInfo();
438-
is $hdr->{Name}, 'hello.txt', "Name is 'hello.txt'";
439437
is $hdr->{Time}, 0, "Time is zero";
440438
}
441439

0 commit comments

Comments
 (0)