From 0ca3627668df490a0665310b651381d90ee40abb Mon Sep 17 00:00:00 2001 From: Spencer Russell Date: Fri, 10 Jan 2014 22:30:52 -0500 Subject: [PATCH] fixes function name in file reading test --- test/test_AudioIO.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_AudioIO.jl b/test/test_AudioIO.jl index 6ced771..eb46ef5 100644 --- a/test/test_AudioIO.jl +++ b/test/test_AudioIO.jl @@ -80,7 +80,7 @@ t = linspace(0, 2, 2 * samplerate) phase = 2 * pi * freq * t reference = int16((2 ^ 15 - 1) * sin(phase)) -f = openAudio("test/sinwave.flac") +f = af_open("test/sinwave.flac") @test f.sfinfo.channels == 1 @test f.sfinfo.frames == 2 * samplerate actual = readFrames(f, 2 * samplerate)