Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit df6dc4c

Browse files
committed
Fix InstanceAdminExampleTest
1 parent b68ac9c commit df6dc4c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

samples/snippets/src/test/java/com/example/bigtable/InstanceAdminExampleTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void testCreateAndDeleteInstance() throws IOException {
8888
String testCluster = generateId();
8989
InstanceAdminExample testInstanceAdmin =
9090
new InstanceAdminExample(projectId, testInstance, testCluster);
91-
testInstanceAdmin.createProdInstance();
91+
testInstanceAdmin.createProdInstance(false);
9292
assertTrue(adminClient.exists(testInstance));
9393

9494
// Deletes an instance.
@@ -121,7 +121,7 @@ public void testAddAndDeleteCluster() {
121121

122122
@Test
123123
public void testRunDoesNotFail() {
124-
instanceAdmin.run();
124+
instanceAdmin.run(false);
125125
}
126126

127127
private static String generateId() {

0 commit comments

Comments
 (0)