Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bmikaili committed Jul 9, 2024
1 parent dc57d9b commit 12d3fff
Showing 1 changed file with 5 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1325,35 +1325,12 @@ public void testRegisterBlobSuccessResponseWithEncryptionKeys() throws Exception
client.registerBlobs(blobs);
Assert.assertEquals(1, client.getEncryptionKeysPerTable().size());
Assert.assertEquals(
"DB_STREAMINGINGEST",
client
.getEncryptionKeysPerTable()
.get(fqn)
.getDatabaseName());
Assert.assertEquals(
"PUBLIC",
client
.getEncryptionKeysPerTable()
.get(fqn)
.getSchemaName());
Assert.assertEquals(
"T_STREAMINGINGEST",
client
.getEncryptionKeysPerTable()
.get(fqn)
.getTableName());
Assert.assertEquals(
"key",
client
.getEncryptionKeysPerTable()
.get(fqn)
.getEncryptionKey());
"DB_STREAMINGINGEST", client.getEncryptionKeysPerTable().get(fqn).getDatabaseName());
Assert.assertEquals("PUBLIC", client.getEncryptionKeysPerTable().get(fqn).getSchemaName());
Assert.assertEquals(
1234,
client
.getEncryptionKeysPerTable()
.get(fqn)
.getEncryptionKeyId());
"T_STREAMINGINGEST", client.getEncryptionKeysPerTable().get(fqn).getTableName());
Assert.assertEquals("key", client.getEncryptionKeysPerTable().get(fqn).getEncryptionKey());
Assert.assertEquals(1234, client.getEncryptionKeysPerTable().get(fqn).getEncryptionKeyId());
}

@Test
Expand Down

0 comments on commit 12d3fff

Please sign in to comment.