Skip to content

Commit 256dff5

Browse files
authored
Merge branch 'main' into renovate/babel-monorepo
2 parents a46bfb5 + 6fd2f83 commit 256dff5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

system-test/spanner.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,9 @@ describe('Spanner', () => {
288288
await Promise.all(
289289
RESOURCES_TO_CLEAN.filter(
290290
resource => resource instanceof Instance,
291-
).map(instance => instance.delete(GAX_OPTIONS)),
291+
).map(async instance => {
292+
await deleteInstance(instance);
293+
}),
292294
);
293295
} else {
294296
/**

0 commit comments

Comments
 (0)