From e060c0a9bcd8e52a404a29029e01b32acd29bc65 Mon Sep 17 00:00:00 2001 From: Spencer Russell Date: Fri, 10 Jan 2014 22:36:41 -0500 Subject: [PATCH] another function rename in the 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 eb46ef5..7d03f49 100644 --- a/test/test_AudioIO.jl +++ b/test/test_AudioIO.jl @@ -83,5 +83,5 @@ reference = int16((2 ^ 15 - 1) * sin(phase)) f = af_open("test/sinwave.flac") @test f.sfinfo.channels == 1 @test f.sfinfo.frames == 2 * samplerate -actual = readFrames(f, 2 * samplerate) +actual = read(f, 2 * samplerate) @test_approx_eq(reference, actual)