aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test_sanity.cpp
diff options
context:
space:
mode:
authorChun-Min Chang <[email protected]>2018-12-17 10:57:08 -0800
committerMatthew Gregan <[email protected]>2018-12-17 15:25:45 -0500
commit5f025918a87524edc26ce7c7e806683e3286baeb (patch)
tree7e7caf15457a01454d499cb481433a06dedec854 /test/test_sanity.cpp
parente5c3a1d8a68c412177f768908b1d54550cf9d510 (diff)
downloadcubeb-5f025918a87524edc26ce7c7e806683e3286baeb.tar.gz
cubeb-5f025918a87524edc26ce7c7e806683e3286baeb.zip
Remove misleading comments
Diffstat (limited to 'test/test_sanity.cpp')
-rw-r--r--test/test_sanity.cpp6
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);