Remove uppercase after number on gtest names.

This is a follow up fix for webrtc-review.googlesource.com/c/src/+/183763.

Bug: webrtc:11084
Change-Id: Iebdfe8a3c0aeb418cbdc128b4876c329788532d0
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/183983
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32088}
diff --git a/video/full_stack_tests.cc b/video/full_stack_tests.cc
index 6f9c6bd..345056d 100644
--- a/video/full_stack_tests.cc
+++ b/video/full_stack_tests.cc
@@ -216,7 +216,7 @@
 }
 
 TEST(GenericDescriptorTest,
-     Foreman_Cif_30Kbps_Net_Delay_0_0_Plr_0_Generic_Descriptor) {
+     Foreman_Cif_30kbps_Net_Delay_0_0_Plr_0_Generic_Descriptor) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -234,7 +234,7 @@
 
 // TODO(webrtc:9722): Remove when experiment is cleaned up.
 TEST(GenericDescriptorTest,
-     Foreman_Cif_30Kbps_Net_Delay_0_0_Plr_0_Trusted_Rate_Ctrl) {
+     Foreman_Cif_30kbps_Net_Delay_0_0_Plr_0_Trusted_Rate_Ctrl) {
   test::ScopedFieldTrials override_field_trials(
       AppendFieldTrials(kVp8TrustedRateControllerFieldTrial));
   auto fixture = CreateVideoQualityTestFixture();
@@ -255,7 +255,7 @@
 }
 
 // Link capacity below default start rate.
-TEST(FullStackTest, Foreman_Cif_Link_150Kbps_Net_Delay_0_0_Plr_0) {
+TEST(FullStackTest, Foreman_Cif_Link_150kbps_Net_Delay_0_0_Plr_0) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -272,7 +272,7 @@
 
 // Restricted network and encoder overproducing by 30%.
 TEST(FullStackTest,
-     Foreman_Cif_Link_150Kbps_Delay100ms_30Pkts_Queue_Overshoot30) {
+     Foreman_Cif_Link_150kbps_Delay100ms_30pkts_Queue_Overshoot30) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -295,7 +295,7 @@
 // Packet rate and loss are low enough that loss will happen with ~3s interval.
 // This triggers protection overhead to toggle between zero and non-zero.
 // Link queue is restrictive enough to trigger loss on probes.
-TEST(FullStackTest, Foreman_Cif_Link_250Kbps_Delay100ms_10Pkts_Loss1) {
+TEST(FullStackTest, Foreman_Cif_Link_250kbps_Delay100ms_10pkts_Loss1) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -366,7 +366,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_500Kbps_Delay_50_0_Plr_3_Flexfec) {
+TEST(FullStackTest, Foreman_Cif_500kbps_Delay_50_0_Plr_3_Flexfec) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -383,7 +383,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_500Kbps_Delay_50_0_Plr_3_Ulpfec) {
+TEST(FullStackTest, Foreman_Cif_500kbps_Delay_50_0_Plr_3_Ulpfec) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -416,7 +416,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_30Kbps_Net_Delay_0_0_Plr_0_H264) {
+TEST(FullStackTest, Foreman_Cif_30kbps_Net_Delay_0_0_Plr_0_H264) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -504,7 +504,7 @@
 }
 #endif  // defined(WEBRTC_USE_H264)
 
-TEST(FullStackTest, Foreman_Cif_500Kbps) {
+TEST(FullStackTest, Foreman_Cif_500kbps) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -521,7 +521,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_500Kbps_32Pkts_Queue) {
+TEST(FullStackTest, Foreman_Cif_500kbps_32pkts_Queue) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -538,7 +538,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_500Kbps_100Ms) {
+TEST(FullStackTest, Foreman_Cif_500kbps_100ms) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -556,7 +556,7 @@
 }
 
 TEST(GenericDescriptorTest,
-     Foreman_Cif_500Kbps_100Ms_32Pkts_Queue_Generic_Descriptor) {
+     Foreman_Cif_500kbps_100ms_32pkts_Queue_Generic_Descriptor) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -575,7 +575,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_500Kbps_100Ms_32Pkts_Queue_Recv_Bwe) {
+TEST(FullStackTest, Foreman_Cif_500kbps_100ms_32pkts_Queue_Recv_Bwe) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = false;
@@ -592,7 +592,7 @@
   fixture->RunWithAnalyzer(foreman_cif);
 }
 
-TEST(FullStackTest, Foreman_Cif_1000Kbps_100Ms_32Pkts_Queue) {
+TEST(FullStackTest, Foreman_Cif_1000kbps_100ms_32pkts_Queue) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging foreman_cif;
   foreman_cif.call.send_side_bwe = true;
@@ -610,7 +610,7 @@
 }
 
 // TODO(sprang): Remove this if we have the similar ModerateLimits below?
-TEST(FullStackTest, Conference_Motion_Hd_2000Kbps_100Ms_32Pkts_Queue) {
+TEST(FullStackTest, Conference_Motion_Hd_2000kbps_100ms_32pkts_Queue) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging conf_motion_hd;
   conf_motion_hd.call.send_side_bwe = true;
@@ -633,7 +633,7 @@
 
 // TODO(webrtc:9722): Remove when experiment is cleaned up.
 TEST(FullStackTest,
-     Conference_Motion_Hd_1Tl_Moderate_Limits_Trusted_Rate_Ctrl) {
+     Conference_Motion_Hd_1tl_Moderate_Limits_Trusted_Rate_Ctrl) {
   test::ScopedFieldTrials override_field_trials(
       AppendFieldTrials(kVp8TrustedRateControllerFieldTrial));
   auto fixture = CreateVideoQualityTestFixture();
@@ -660,7 +660,7 @@
 }
 
 TEST(GenericDescriptorTest,
-     Conference_Motion_Hd_2Tl_Moderate_Limits_Generic_Descriptor) {
+     Conference_Motion_Hd_2tl_Moderate_Limits_Generic_Descriptor) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging conf_motion_hd;
   conf_motion_hd.call.send_side_bwe = true;
@@ -684,7 +684,7 @@
   fixture->RunWithAnalyzer(conf_motion_hd);
 }
 
-TEST(FullStackTest, Conference_Motion_Hd_3Tl_Moderate_Limits) {
+TEST(FullStackTest, Conference_Motion_Hd_3tl_Moderate_Limits) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging conf_motion_hd;
   conf_motion_hd.call.send_side_bwe = true;
@@ -706,7 +706,7 @@
   fixture->RunWithAnalyzer(conf_motion_hd);
 }
 
-TEST(FullStackTest, Conference_Motion_Hd_4Tl_Moderate_Limits) {
+TEST(FullStackTest, Conference_Motion_Hd_4tl_Moderate_Limits) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging conf_motion_hd;
   conf_motion_hd.call.send_side_bwe = true;
@@ -728,7 +728,7 @@
   fixture->RunWithAnalyzer(conf_motion_hd);
 }
 
-TEST(FullStackTest, Conference_Motion_Hd_3Tl_Alt_Moderate_Limits) {
+TEST(FullStackTest, Conference_Motion_Hd_3tl_Alt_Moderate_Limits) {
   test::ScopedFieldTrials field_trial(
       AppendFieldTrials("WebRTC-UseShortVP8TL3Pattern/Enabled/"));
   auto fixture = CreateVideoQualityTestFixture();
@@ -752,7 +752,7 @@
   fixture->RunWithAnalyzer(conf_motion_hd);
 }
 
-TEST(FullStackTest, Conference_Motion_Hd_3Tl_Alt_Heavy_Moderate_Limits) {
+TEST(FullStackTest, Conference_Motion_Hd_3tl_Alt_Heavy_Moderate_Limits) {
   auto fixture = CreateVideoQualityTestFixture();
   test::ScopedFieldTrials field_trial(
       AppendFieldTrials("WebRTC-UseShortVP8TL3Pattern/Enabled/"
@@ -779,7 +779,7 @@
 }
 
 #if defined(RTC_ENABLE_VP9)
-TEST(FullStackTest, Conference_Motion_Hd_2000Kbps_100Ms_32Pkts_Queue_Vp9) {
+TEST(FullStackTest, Conference_Motion_Hd_2000kbps_100ms_32pkts_Queue_Vp9) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging conf_motion_hd;
   conf_motion_hd.call.send_side_bwe = true;
@@ -979,7 +979,7 @@
 
 #if defined(RTC_ENABLE_VP9)
 
-TEST(FullStackTest, Screenshare_Slides_Vp9_3Sl_High_Fps) {
+TEST(FullStackTest, Screenshare_Slides_Vp9_3sl_High_Fps) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging screenshare;
   screenshare.call.send_side_bwe = true;
@@ -998,7 +998,7 @@
 // TODO(http://bugs.webrtc.org/9506): investigate.
 #if !defined(WEBRTC_MAC)
 
-TEST(FullStackTest, Vp9ksvc_3Sl_High) {
+TEST(FullStackTest, Vp9ksvc_3sl_High) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
   auto fixture = CreateVideoQualityTestFixture();
@@ -1013,7 +1013,7 @@
   fixture->RunWithAnalyzer(simulcast);
 }
 
-TEST(FullStackTest, Vp9ksvc_3Sl_Low) {
+TEST(FullStackTest, Vp9ksvc_3sl_Low) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
   auto fixture = CreateVideoQualityTestFixture();
@@ -1028,7 +1028,7 @@
   fixture->RunWithAnalyzer(simulcast);
 }
 
-TEST(FullStackTest, Vp9ksvc_3Sl_Low_Bw_Limited) {
+TEST(FullStackTest, Vp9ksvc_3sl_Low_Bw_Limited) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"
                         "WebRTC-Vp9ExternalRefCtrl/Enabled/"));
@@ -1045,7 +1045,7 @@
   fixture->RunWithAnalyzer(simulcast);
 }
 
-TEST(FullStackTest, Vp9ksvc_3Sl_Medium_Network_Restricted) {
+TEST(FullStackTest, Vp9ksvc_3sl_Medium_Network_Restricted) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
   auto fixture = CreateVideoQualityTestFixture();
@@ -1063,7 +1063,7 @@
 }
 
 // TODO(webrtc:9722): Remove when experiment is cleaned up.
-TEST(FullStackTest, Vp9ksvc_3Sl_Medium_Network_Restricted_Trusted_Rate) {
+TEST(FullStackTest, Vp9ksvc_3sl_Medium_Network_Restricted_Trusted_Rate) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"
                         "WebRTC-LibvpxVp9TrustedRateController/Enabled/"));
@@ -1115,7 +1115,7 @@
   fixture->RunWithAnalyzer(simulcast);
 }
 
-TEST(FullStackTest, Simulcast_Vp8_3Sl_High) {
+TEST(FullStackTest, Simulcast_Vp8_3sl_High) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging simulcast;
   simulcast.call.send_side_bwe = true;
@@ -1141,7 +1141,7 @@
   fixture->RunWithAnalyzer(simulcast);
 }
 
-TEST(FullStackTest, Simulcast_Vp8_3Sl_Low) {
+TEST(FullStackTest, Simulcast_Vp8_3sl_Low) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging simulcast;
   simulcast.call.send_side_bwe = true;
@@ -1207,12 +1207,12 @@
 #if defined(WEBRTC_ANDROID) || defined(WEBRTC_IOS)
 // Fails on mobile devices:
 // https://bugs.chromium.org/p/webrtc/issues/detail?id=7301
-#define MAYBE_Largeroom_50Thumb DISABLED_Largeroom_50Thumb
+#define MAYBE_Largeroom_50thumb DISABLED_Largeroom_50thumb
 #else
-#define MAYBE_Largeroom_50Thumb Largeroom_50Thumb
+#define MAYBE_Largeroom_50thumb Largeroom_50thumb
 #endif
 
-TEST(FullStackTest, MAYBE_Largeroom_50Thumb) {
+TEST(FullStackTest, MAYBE_Largeroom_50thumb) {
   auto fixture = CreateVideoQualityTestFixture();
   ParamsWithLogging large_room;
   large_room.call.send_side_bwe = true;
diff --git a/video/pc_full_stack_tests.cc b/video/pc_full_stack_tests.cc
index 2d6c420..2070e0a 100644
--- a/video/pc_full_stack_tests.cc
+++ b/video/pc_full_stack_tests.cc
@@ -276,7 +276,7 @@
 }
 
 TEST(PCGenericDescriptorTest,
-     Pc_Foreman_Cif_30Kbps_Net_Delay_0_0_Plr_0_Generic_Descriptor) {
+     Pc_Foreman_Cif_30kbps_Net_Delay_0_0_Plr_0_Generic_Descriptor) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -307,7 +307,7 @@
 
 // TODO(webrtc:9722): Remove when experiment is cleaned up.
 TEST(PCGenericDescriptorTest,
-     Pc_Foreman_Cif_30Kbps_Net_Delay_0_0_Plr_0_Trusted_Rate_Ctrl) {
+     Pc_Foreman_Cif_30kbps_Net_Delay_0_0_Plr_0_Trusted_Rate_Ctrl) {
   test::ScopedFieldTrials override_field_trials(
       AppendFieldTrials(kVp8TrustedRateControllerFieldTrial));
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
@@ -340,7 +340,7 @@
 }
 
 // Link capacity below default start rate.
-TEST(PCFullStackTest, Pc_Foreman_Cif_Link_150Kbps_Net_Delay_0_0_Plr_0) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_Link_150kbps_Net_Delay_0_0_Plr_0) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -364,7 +364,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_Link_130Kbps_Delay100ms_Loss1_Ulpfec) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_Link_130kbps_Delay100ms_Loss1_Ulpfec) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -390,7 +390,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_Link_50Kbps_Delay100ms_Loss1_Ulpfec) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_Link_50kbps_Delay100ms_Loss1_Ulpfec) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -418,7 +418,7 @@
 
 // Restricted network and encoder overproducing by 30%.
 TEST(PCFullStackTest,
-     Pc_Foreman_Cif_Link_150Kbps_Delay100ms_30Pkts_Queue_Overshoot30) {
+     Pc_Foreman_Cif_Link_150kbps_Delay100ms_30pkts_Queue_Overshoot30) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -449,7 +449,7 @@
 // Packet rate and loss are low enough that loss will happen with ~3s interval.
 // This triggers protection overhead to toggle between zero and non-zero.
 // Link queue is restrictive enough to trigger loss on probes.
-TEST(PCFullStackTest, Pc_Foreman_Cif_Link_250Kbps_Delay100ms_10Pkts_Loss1) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_Link_250kbps_Delay100ms_10pkts_Loss1) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -554,7 +554,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_500Kbps_Delay_50_0_Plr_3_Flexfec) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_500kbps_Delay_50_0_Plr_3_Flexfec) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -580,7 +580,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_500Kbps_Delay_50_0_Plr_3_Ulpfec) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_500kbps_Delay_50_0_Plr_3_Ulpfec) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -630,7 +630,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_30Kbps_Net_Delay_0_0_Plr_0_H264) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_30kbps_Net_Delay_0_0_Plr_0_H264) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -766,7 +766,7 @@
 }
 #endif  // defined(WEBRTC_USE_H264)
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_500Kbps) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_500kbps) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -791,7 +791,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_500Kbps_32Pkts_Queue) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_500kbps_32pkts_Queue) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -817,7 +817,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_500Kbps_100Ms) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_500kbps_100ms) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -844,7 +844,7 @@
 }
 
 TEST(PCGenericDescriptorTest,
-     Pc_Foreman_Cif_500Kbps_100Ms_32Pkts_Queue_Generic_Descriptor) {
+     Pc_Foreman_Cif_500kbps_100ms_32pkts_Queue_Generic_Descriptor) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -891,7 +891,7 @@
 }
 */
 
-TEST(PCFullStackTest, Pc_Foreman_Cif_1000Kbps_100Ms_32Pkts_Queue) {
+TEST(PCFullStackTest, Pc_Foreman_Cif_1000kbps_100ms_32pkts_Queue) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -918,7 +918,7 @@
 }
 
 // TODO(sprang): Remove this if we have the similar ModerateLimits below?
-TEST(PCFullStackTest, Pc_Conference_Motion_Hd_2000Kbps_100Ms_32Pkts_Queue) {
+TEST(PCFullStackTest, Pc_Conference_Motion_Hd_2000kbps_100ms_32pkts_Queue) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -946,7 +946,7 @@
 
 // TODO(webrtc:9722): Remove when experiment is cleaned up.
 TEST(PCFullStackTest,
-     Pc_Conference_Motion_Hd_1Tl_Moderate_Limits_Trusted_Rate_Ctrl) {
+     Pc_Conference_Motion_Hd_1tl_Moderate_Limits_Trusted_Rate_Ctrl) {
   test::ScopedFieldTrials override_field_trials(
       AppendFieldTrials(kVp8TrustedRateControllerFieldTrial));
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
@@ -1102,7 +1102,7 @@
 */
 
 #if defined(RTC_ENABLE_VP9)
-TEST(PCFullStackTest, Pc_Conference_Motion_Hd_2000Kbps_100Ms_32Pkts_Queue_Vp9) {
+TEST(PCFullStackTest, Pc_Conference_Motion_Hd_2000kbps_100ms_32pkts_Queue_Vp9) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -1412,7 +1412,7 @@
 
 #if defined(RTC_ENABLE_VP9)
 
-TEST(PCFullStackTest, Pc_Screenshare_Slides_Vp9_3Sl_High_Fps) {
+TEST(PCFullStackTest, Pc_Screenshare_Slides_Vp9_3sl_High_Fps) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9InterLayerPred/"
                         "Enabled,inter_layer_pred_mode:on/"));
@@ -1442,7 +1442,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Vp9svc_3Sl_High) {
+TEST(PCFullStackTest, Pc_Vp9svc_3sl_High) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9InterLayerPred/"
                         "Enabled,inter_layer_pred_mode:on/"));
@@ -1471,7 +1471,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Vp9svc_3Sl_Low) {
+TEST(PCFullStackTest, Pc_Vp9svc_3sl_Low) {
   webrtc::test::ScopedFieldTrials override_trials(
       AppendFieldTrials("WebRTC-Vp9InterLayerPred/"
                         "Enabled,inter_layer_pred_mode:on/"));
@@ -1626,7 +1626,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Simulcast_Vp8_3Sl_High) {
+TEST(PCFullStackTest, Pc_Simulcast_Vp8_3sl_High) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;
@@ -1652,7 +1652,7 @@
   fixture->Run(std::move(run_params));
 }
 
-TEST(PCFullStackTest, Pc_Simulcast_Vp8_3Sl_Low) {
+TEST(PCFullStackTest, Pc_Simulcast_Vp8_3sl_Low) {
   std::unique_ptr<NetworkEmulationManager> network_emulation_manager =
       CreateNetworkEmulationManager();
   BuiltInNetworkBehaviorConfig config;