diff --git a/webrtc/call/call_perf_tests.cc b/webrtc/call/call_perf_tests.cc index a510483690..1551cd7b86 100644 --- a/webrtc/call/call_perf_tests.cc +++ b/webrtc/call/call_perf_tests.cc @@ -290,7 +290,7 @@ void CallPerfTest::TestAudioVideoSync(FecMode fec, observer.PrintResults(); // In quick test synchronization may not be achieved in time. - if (field_trial::IsEnabled("WebRTC-QuickPerfTest")) { + if (!field_trial::IsEnabled("WebRTC-QuickPerfTest")) { EXPECT_EQ(1, metrics::NumSamples("WebRTC.Video.AVSyncOffsetInMs")); } } diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc index 306cac9e15..467da37f3f 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc @@ -380,7 +380,7 @@ void BweTest::RunFairnessTest(BandwidthEstimatorType bwe_type, PrintResults(capacity_kbps, total_utilization.GetBitrateStats(), flow_delay_ms, flow_throughput_kbps); - if (field_trial::IsEnabled("WebRTC-QuickPerfTest")) { + if (!field_trial::IsEnabled("WebRTC-QuickPerfTest")) { for (int i : all_flow_ids) { metric_recorders[i]->PlotThroughputHistogram( title, flow_name, static_cast(num_media_flows), 0);