diff --git a/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java b/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java index a4de0f2..f3ad2fd 100644 --- a/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java +++ b/finish/inventory/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java @@ -100,8 +100,8 @@ public void testNonEmpty() { public void testValue() { assertNotNull(hostname, "Hostname should be set by the first test."); - Response response = this.getResponse(baseUrl + - INVENTORY_SYSTEMS + "/" + hostname); + Response response = + this.getResponse(baseUrl + INVENTORY_SYSTEMS + "/" + hostname); this.assertResponse(baseUrl, response); JsonObject system = response.readEntity(JsonObject.class);