Test metrics endpoint using tag available on Java 9 as well as 8

See gh-10524
This commit is contained in:
Andy Wilkinson 2017-10-11 16:50:23 +01:00
parent bcfb1d17b1
commit 1bd44d89d6

View File

@ -67,7 +67,7 @@ public class MetricsEndpointWebIntegrationTests {
@Test
public void selectByTag() {
MetricsEndpointWebIntegrationTests.client.get()
.uri("/application/metrics/jvm.memory.used?tag=id:PS%20Old%20Gen")
.uri("/application/metrics/jvm.memory.used?tag=id:Compressed%20Class%20Space")
.exchange().expectStatus().isOk().expectBody().jsonPath("$.name")
.isEqualTo("jvm.memory.used");
}