aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_opus.cpp
diff options
context:
space:
mode:
authorScott Wheeler <scott@directededge.com>2019-09-11 00:37:02 +0200
committerScott Wheeler <scott@directededge.com>2019-09-11 00:39:37 +0200
commitc05fa78406fd8ce7382a11c1f63a17c4bfbe83fa (patch)
treea7c75d612b8ec70e0f523cacf171c6f994559ae2 /tests/test_opus.cpp
parentb8dc105ae3ae5948ac6c7e3a45d5e4d6d846bd75 (diff)
Mark deprected methods and remove internal usage
This does not put the deprecated marker on methods that will or could resolve to the same overload, e.g.: void foo(bool bar = true); // <-- not marked void foo(Bar bar) // <-- since this will have a default argument in the new version
Diffstat (limited to 'tests/test_opus.cpp')
-rw-r--r--tests/test_opus.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_opus.cpp b/tests/test_opus.cpp
index cdf77eae..9a49d239 100644
--- a/tests/test_opus.cpp
+++ b/tests/test_opus.cpp
@@ -50,7 +50,6 @@ public:
{
Ogg::Opus::File f(TEST_FILE_PATH_C("correctness_gain_silent_output.opus"));
CPPUNIT_ASSERT(f.audioProperties());
- CPPUNIT_ASSERT_EQUAL(7, f.audioProperties()->length());
CPPUNIT_ASSERT_EQUAL(7, f.audioProperties()->lengthInSeconds());
CPPUNIT_ASSERT_EQUAL(7737, f.audioProperties()->lengthInMilliseconds());
CPPUNIT_ASSERT_EQUAL(36, f.audioProperties()->bitrate());