From: Don Armstrong Date: Wed, 19 Mar 2014 21:43:52 +0000 (-0700) Subject: fix stupid missing asign in populate_index X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=a3dc12e881d7e021908aac6a5f8a2294fb7e6ca0 fix stupid missing asign in populate_index --- diff --git a/t/test_spool/versions/indices/make_index_from_stubs.pl b/t/test_spool/versions/indices/make_index_from_stubs.pl index dbda1b0..7287935 100755 --- a/t/test_spool/versions/indices/make_index_from_stubs.pl +++ b/t/test_spool/versions/indices/make_index_from_stubs.pl @@ -28,7 +28,7 @@ sub open_index { # populate the index with the given stubs sub populate_index{ - my ($tie,$stubs); + my ($tie,$stubs) = @_; for my $stub (@{$stubs}) { my $fh = IO::File->new($stub,'r'); local $/;