Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
@Category({TemplateIntegrationTest.class, SpannerStagingTest.class})
public class InformationSchemaScannerIT extends SpannerTemplateITBase {

public static final String INSTANCE_PARTITION_ID = "mr-partition";
public static final String INSTANCE_PARTITION_ID = "default";

public static SpannerResourceManager sharedSpannerResourceManager;
public static SpannerResourceManager sharedPgSpannerResourceManager;
Expand Down Expand Up @@ -188,11 +188,10 @@ private void setupResourceManager(Dialect dialect, byte[] protoDescriptors) {

SpannerResourceManager.Builder builder =
SpannerResourceManager.builder(
testName + "-" + UUID.randomUUID().toString().substring(0, 8),
projectId,
"nam6",
dialect)
.setInstancePartition(INSTANCE_PARTITION_ID, "nam3");
testName + "-" + UUID.randomUUID().toString().substring(0, 8),
projectId,
"nam3",
dialect);
if (protoDescriptors != null) {
builder.setProtoDescriptors(protoDescriptors);
}
Expand Down
Loading