Skip to content

Commit

Permalink
Minor: [Perl][Test] Suppress warning in interop-data-test for Perl SDK (
Browse files Browse the repository at this point in the history
  • Loading branch information
sarutak authored Sep 21, 2023
1 parent f9f6cde commit 53865e6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lang/perl/xt/interop.t
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ use warnings;
use Test::More;
use File::Basename qw(basename);
use IO::File;
use_ok 'Avro::DataFile';
use_ok 'Avro::DataFileReader';

BEGIN {
use_ok 'Avro::DataFile';
use_ok 'Avro::DataFileReader';
}

for my $path (glob '../../build/interop/data/*.avro') {
my $fn = basename($path);
Expand Down

0 comments on commit 53865e6

Please sign in to comment.