Skip to content

Commit 6b55ad8

Browse files
committed
Code formatting
1 parent af44ed5 commit 6b55ad8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

integration-tests/src/test/java/io/apicurio/tests/ApicurioRegistryBaseIT.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,8 @@ private void internalAssertClientError(String expectedErrorName, int expectedCod
473473
Assertions.fail("Expected (but didn't get) a registry client application exception with code: "
474474
+ expectedCode);
475475
} catch (Exception e) {
476-
Assertions.assertEquals(io.apicurio.registry.rest.client.models.ProblemDetails.class, e.getClass());
476+
Assertions.assertEquals(io.apicurio.registry.rest.client.models.ProblemDetails.class,
477+
e.getClass());
477478
Assertions.assertEquals(expectedErrorName,
478479
((io.apicurio.registry.rest.client.models.ProblemDetails) e).getName());
479480
Assertions.assertEquals(expectedCode,

integration-tests/src/test/java/io/apicurio/tests/auth/SimpleAuthIT.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ public void testAdminRole() throws Exception {
193193
}
194194

195195
protected void assertArtifactNotFound(Exception exception) {
196-
Assertions.assertEquals(io.apicurio.registry.rest.client.models.ProblemDetails.class, exception.getClass());
196+
Assertions.assertEquals(io.apicurio.registry.rest.client.models.ProblemDetails.class,
197+
exception.getClass());
197198
Assertions.assertEquals("ArtifactNotFoundException",
198199
((io.apicurio.registry.rest.client.models.ProblemDetails) exception).getName());
199200
Assertions.assertEquals(404,

0 commit comments

Comments
 (0)