Skip to content

Commit

Permalink
Fix bad indent
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-constine-ttd committed Dec 2, 2024
1 parent bd1fa80 commit 9f2105e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/com/uid2/core/vertx/TestCoreVerticle.java
Original file line number Diff line number Diff line change
Expand Up @@ -776,9 +776,9 @@ void cloudEncryptionKeyRetrieveNoKeysOrError(Vertx vertx, VertxTestContext testC
HttpResponse<Buffer> response2 = ar2.result();
assertEquals(500, response2.statusCode());

JsonObject json2 = response2.bodyAsJsonObject();
assertEquals("error", json2.getString("status"));
assertEquals("error generating attestation token", json2.getString("message"));
JsonObject json2 = response2.bodyAsJsonObject();
assertEquals("error", json2.getString("status"));
assertEquals("error generating attestation token", json2.getString("message"));

testContext.completeNow();
} else {
Expand Down

0 comments on commit 9f2105e

Please sign in to comment.