diff --git a/video/end_to_end_tests/call_operation_tests.cc b/video/end_to_end_tests/call_operation_tests.cc index 361bdf7a2a..d90b85ef05 100644 --- a/video/end_to_end_tests/call_operation_tests.cc +++ b/video/end_to_end_tests/call_operation_tests.cc @@ -32,10 +32,12 @@ class CallOperationEndToEndTest test::ScopedFieldTrials field_trial_; }; -INSTANTIATE_TEST_CASE_P(RoundRobin, - CallOperationEndToEndTest, - ::testing::Values("WebRTC-RoundRobinPacing/Disabled/", - "WebRTC-RoundRobinPacing/Enabled/")); +INSTANTIATE_TEST_CASE_P( + FieldTrials, + CallOperationEndToEndTest, + ::testing::Values("WebRTC-RoundRobinPacing/Disabled/", + "WebRTC-RoundRobinPacing/Enabled/", + "WebRTC-TaskQueueCongestionControl/Enabled/")); TEST_P(CallOperationEndToEndTest, ReceiverCanBeStartedTwice) { CreateCalls(Call::Config(event_log_.get()), Call::Config(event_log_.get())); diff --git a/video/end_to_end_tests/transport_feedback_tests.cc b/video/end_to_end_tests/transport_feedback_tests.cc index 9c523eab58..e8f5b23508 100644 --- a/video/end_to_end_tests/transport_feedback_tests.cc +++ b/video/end_to_end_tests/transport_feedback_tests.cc @@ -33,10 +33,12 @@ class TransportFeedbackEndToEndTest test::ScopedFieldTrials field_trial_; }; -INSTANTIATE_TEST_CASE_P(RoundRobin, - TransportFeedbackEndToEndTest, - ::testing::Values("WebRTC-RoundRobinPacing/Disabled/", - "WebRTC-RoundRobinPacing/Enabled/")); +INSTANTIATE_TEST_CASE_P( + FieldTrials, + TransportFeedbackEndToEndTest, + ::testing::Values("WebRTC-RoundRobinPacing/Disabled/", + "WebRTC-RoundRobinPacing/Enabled/", + "WebRTC-TaskQueueCongestionControl/Enabled/")); TEST_P(TransportFeedbackEndToEndTest, AssignsTransportSequenceNumbers) { static const int kExtensionId = 5;