File tree Expand file tree Collapse file tree
http-clients/apache5-client/src/test/java/software/amazon/awssdk/http/apache5 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public void prepareRequest_callableCalled_metricsReported() throws IOException {
7676
7777 client .prepareRequest (executeRequest ).call ();
7878 MetricCollection collected = collector .collect ();
79- assertThat (collected .metricValues (HTTP_CLIENT_NAME )).containsExactly ("Apache5Preview " );
79+ assertThat (collected .metricValues (HTTP_CLIENT_NAME )).containsExactly ("Apache5 " );
8080 assertThat (collected .metricValues (LEASED_CONCURRENCY )).containsExactly (1 );
8181 assertThat (collected .metricValues (PENDING_CONCURRENCY_ACQUIRES )).containsExactly (2 );
8282 assertThat (collected .metricValues (AVAILABLE_CONCURRENCY )).containsExactly (3 );
@@ -94,7 +94,7 @@ public void prepareRequest_connectionManagerNotPooling_callableCalled_metricsRep
9494
9595 MetricCollection collected = collector .collect ();
9696
97- assertThat (collected .metricValues (HTTP_CLIENT_NAME )).containsExactly ("Apache5Preview " );
97+ assertThat (collected .metricValues (HTTP_CLIENT_NAME )).containsExactly ("Apache5 " );
9898 assertThat (collected .metricValues (LEASED_CONCURRENCY )).isEmpty ();
9999 assertThat (collected .metricValues (PENDING_CONCURRENCY_ACQUIRES )).isEmpty ();
100100 assertThat (collected .metricValues (AVAILABLE_CONCURRENCY )).isEmpty ();
You can’t perform that action at this time.
0 commit comments