Skip to content

Commit 93cb9ad

Browse files
committed
Expand the test name on the client side as well.
1 parent c3fc7c3 commit 93cb9ad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

interop-testing/src/main/java/io/grpc/testing/integration/TestCases.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public enum TestCases {
6060
CHANNEL_SOAK("sends 'soak_iterations' large_unary rpcs in a loop, each on a new channel"),
6161
ORCA_PER_RPC("report backend metrics per query"),
6262
ORCA_OOB("report backend metrics out-of-band"),
63-
MCS_CS("max concurrent streaming connection scaling");
63+
MAX_CONCURRENT_STREAMS_CONNECTION_SCALING("max concurrent streaming connection scaling");
6464

6565
private final String description;
6666

interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ private void runTest(TestCases testCase) throws Exception {
565565
break;
566566
}
567567

568-
case MCS_CS: {
568+
case MAX_CONCURRENT_STREAMS_CONNECTION_SCALING: {
569569
ChannelCredentials channelCredentials;
570570
if (useTls) {
571571
if (!useTestCa) {

interop-testing/src/test/java/io/grpc/testing/integration/TestCasesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void testCaseNamesShouldMapToEnums() {
6868
"timeout_on_sleeping_server",
6969
"orca_per_rpc",
7070
"orca_oob",
71-
"mcs_cs",
71+
"max_concurrent_streams_connection_scaling",
7272
};
7373

7474
// additional test cases

0 commit comments

Comments
 (0)