File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ BOOST_AUTO_TEST_CASE(test_get_audio) {
3535 " pcm16" ,
3636 [&](AudioIn::audio_chunk&& chunk) -> bool {
3737 received_chunks.push_back (std::move (chunk));
38- // Stop stream after 3 chunks
38+ // Stop stream after 3 chunks
3939 return received_chunks.size () < 3 ;
4040 },
4141 1.0 , // 1 second duration
@@ -77,8 +77,7 @@ BOOST_AUTO_TEST_CASE(test_get_audio_request_ids_differ_across_calls) {
7777 return false ; // Stop after first chunk
7878 },
7979 1.0 ,
80- 0
81- );
80+ 0 );
8281
8382 // Second call
8483 client.get_audio (
@@ -88,8 +87,7 @@ BOOST_AUTO_TEST_CASE(test_get_audio_request_ids_differ_across_calls) {
8887 return false ; // Stop after first chunk
8988 },
9089 1.0 ,
91- 0
92- );
90+ 0 );
9391
9492 // Request IDs should be different across separate calls
9593 BOOST_CHECK (!first_request_id.empty ());
@@ -98,7 +96,6 @@ BOOST_AUTO_TEST_CASE(test_get_audio_request_ids_differ_across_calls) {
9896 });
9997}
10098
101-
10299BOOST_AUTO_TEST_CASE (test_do_command) {
103100 std::shared_ptr<MockAudioIn> mock = MockAudioIn::get_mock_audio_in ();
104101 client_to_mock_pipeline<AudioIn>(mock, [](AudioIn& client) {
You can’t perform that action at this time.
0 commit comments