From: Marius Gavrilescu Date: Sat, 10 Dec 2016 17:41:12 +0000 (+0200) Subject: Fix warning in test X-Git-Tag: 0.005~1 X-Git-Url: http://git.ieval.ro/?p=audio-opusfile.git;a=commitdiff_plain;h=3656d9431078d310d9deca559831a1059134110c Fix warning in test --- diff --git a/t/Audio-Opusfile.t b/t/Audio-Opusfile.t index 8398a06..81100fe 100644 --- a/t/Audio-Opusfile.t +++ b/t/Audio-Opusfile.t @@ -73,5 +73,5 @@ is scalar @samples, 1208, '->read, got correct number of samples'; isn::t $of->pcm_tell, 0, '->pcm_tell is not 0 after read'; $of->raw_seek(0); is $of->pcm_tell, 0, '->pcm_tell is 0 right after raw_seek'; -my @samples = $of->read_float_stereo; + @samples = $of->read_float_stereo; is scalar @samples, 1208, '->read_float_stereo, got correct number of samples';