From: Dobrica Pavlinusic Date: Wed, 25 Aug 2010 17:28:05 +0000 (+0200) Subject: don't fail without tags in range X-Git-Url: http://git.rot13.org/?p=Biblio-RFID.git;a=commitdiff_plain;h=14d9b25ae6a2be86e3c87e81a9750f237fd67822 don't fail without tags in range --- diff --git a/t/10-3M-810.t b/t/10-3M-810.t index 6476aca..b2bcc0e 100755 --- a/t/10-3M-810.t +++ b/t/10-3M-810.t @@ -11,8 +11,8 @@ BEGIN { ok( my $o = Biblio::RFID::Reader::3M810->new( device => '/dev/ttyUSB0' ), 'new' ); -ok( my @tags = $o->inventory, 'inventory' ); -diag dump @tags; +my @tags = $o->inventory; +diag 'inventory ',join(' ',@tags); my $old_afi;