Skip to content

Commit

Permalink
Fix the "database name is too long" error that happens when running a…
Browse files Browse the repository at this point in the history
…gainst Serverless (#1082)

JAVA-4679
  • Loading branch information
stIncMale authored Feb 10, 2023
1 parent 59585de commit a96faf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void setUp() {
provider -> provider.name, provider -> provider.propertiesSupplier)))
.build());
client.getDatabase(KEY_VAULT_NAMESPACE.getDatabaseName()).drop();
db = client.getDatabase(AbstractClientSideEncryptionAutoDataKeysTest.class.getSimpleName());
db = client.getDatabase("autoDataKeysTest");
db.drop();
}

Expand Down

0 comments on commit a96faf6

Please sign in to comment.