diff options
author | Chun-Min Chang <[email protected]> | 2018-12-17 10:57:08 -0800 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2018-12-17 15:25:45 -0500 |
commit | 5f025918a87524edc26ce7c7e806683e3286baeb (patch) | |
tree | 7e7caf15457a01454d499cb481433a06dedec854 /test/test_sanity.cpp | |
parent | e5c3a1d8a68c412177f768908b1d54550cf9d510 (diff) | |
download | cubeb-5f025918a87524edc26ce7c7e806683e3286baeb.tar.gz cubeb-5f025918a87524edc26ce7c7e806683e3286baeb.zip |
Remove misleading comments
Diffstat (limited to 'test/test_sanity.cpp')
-rw-r--r-- | test/test_sanity.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_sanity.cpp b/test/test_sanity.cpp index 5c89617..06d9daf 100644 --- a/test/test_sanity.cpp +++ b/test/test_sanity.cpp @@ -416,7 +416,7 @@ TEST(cubeb, basic_stream_operations) ASSERT_EQ(r, CUBEB_OK); ASSERT_NE(stream, nullptr); - /* position and volume before stream has started */ + /* position before stream has started */ r = cubeb_stream_get_position(stream, &position); ASSERT_EQ(r, CUBEB_OK); ASSERT_EQ(position, 0u); @@ -424,14 +424,14 @@ TEST(cubeb, basic_stream_operations) r = cubeb_stream_start(stream); ASSERT_EQ(r, CUBEB_OK); - /* position and volume after while stream running */ + /* position after while stream running */ r = cubeb_stream_get_position(stream, &position); ASSERT_EQ(r, CUBEB_OK); r = cubeb_stream_stop(stream); ASSERT_EQ(r, CUBEB_OK); - /* position and volume after stream has stopped */ + /* position after stream has stopped */ r = cubeb_stream_get_position(stream, &position); ASSERT_EQ(r, CUBEB_OK); |