From bdfd7dc003390b59579f739ccdaf79a1bb3f6da3 Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Thu, 25 Sep 2014 16:44:08 +0200 Subject: [PATCH] Seems to have been wrong in the merge --- tests/test_aiff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_aiff.cpp b/tests/test_aiff.cpp index 71040814..6ff07ceb 100644 --- a/tests/test_aiff.cpp +++ b/tests/test_aiff.cpp @@ -25,7 +25,7 @@ public: RIFF::AIFF::File *f = new RIFF::AIFF::File(filename.c_str()); CPPUNIT_ASSERT_EQUAL(705, f->audioProperties()->bitrate()); - CPPUNIT_ASSERT(f->audioProperties()->isAiffC()); + CPPUNIT_ASSERT(!f->audioProperties()->isAiffC()); delete f; }