diff --git a/audio/voip/test/audio_channel_unittest.cc b/audio/voip/test/audio_channel_unittest.cc index 7097e7f6c9..0c8312b738 100644 --- a/audio/voip/test/audio_channel_unittest.cc +++ b/audio/voip/test/audio_channel_unittest.cc @@ -232,7 +232,7 @@ TEST_F(AudioChannelTest, TestChannelStatistics) { EXPECT_CALL(transport_, SendRtp).WillRepeatedly(Invoke(loop_rtp)); EXPECT_CALL(transport_, SendRtcp).WillRepeatedly(Invoke(loop_rtcp)); - // Simulate microphone giving audio frame (10 ms). This will trigger tranport + // Simulate microphone giving audio frame (10 ms). This will trigger transport // to send RTP as handled in loop_rtp above. auto audio_sender = audio_channel_->GetAudioSender(); audio_sender->SendAudioData(GetAudioFrame(0)); @@ -245,7 +245,7 @@ TEST_F(AudioChannelTest, TestChannelStatistics) { audio_mixer_->Mix(/*number_of_channels=*/1, &audio_frame); // Force sending RTCP SR report in order to have remote_rtcp field available - // in channel statistics. This will trigger tranport to send RTCP as handled + // in channel statistics. This will trigger transport to send RTCP as handled // in loop_rtcp above. audio_channel_->SendRTCPReportForTesting(kRtcpSr); diff --git a/audio/voip/test/audio_egress_unittest.cc b/audio/voip/test/audio_egress_unittest.cc index 8501b2d3d9..83df26eef1 100644 --- a/audio/voip/test/audio_egress_unittest.cc +++ b/audio/voip/test/audio_egress_unittest.cc @@ -218,7 +218,7 @@ TEST_F(AudioEgressTest, SkipAudioEncodingAfterStopSend) { // It should be safe to exit the test case while encoder_queue_ has // outstanding data to process. We are making sure that this doesn't - // result in crahses or sanitizer errors due to remaining data. + // result in crashes or sanitizer errors due to remaining data. for (size_t i = 0; i < kExpected * 2; i++) { egress_->SendAudioData(GetAudioFrame(i)); time_controller_.AdvanceTime(TimeDelta::Millis(10));