Skip to content

Commit

Permalink
Fix: typo in test causing integration test failure (#1556)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimit-j-shah committed Sep 16, 2024
1 parent acf19d4 commit d903850
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public void before() throws Exception {
.setNamespace(options.getNamespace())
.build();
KEY3 =
Key.newBuilder(projectId, kind1, "key4", options.getDatabaseId())
Key.newBuilder(projectId, kind1, "key3", options.getDatabaseId())
.setNamespace(options.getNamespace())
.build();
KEY4 =
Expand Down Expand Up @@ -381,9 +381,6 @@ public void after() throws Exception {
@AfterClass
public static void teardown() throws Exception {
traceClient_v1.close();
CompletableResultCode completableResultCode =
openTelemetrySdk.getSdkTracerProvider().shutdown();
completableResultCode.join(TRACE_PROVIDER_SHUTDOWN_MILLIS, TimeUnit.MILLISECONDS);
}

// Generates a random hex string of length `numBytes`
Expand Down

0 comments on commit d903850

Please sign in to comment.