Skip to content

Commit dd80086

Browse files
author
Lixia Chen
committed
Fix unit test broken by the new authorized views apis
Change-Id: I075e896a696d83c70f72337f2921d3285e408e1e
1 parent acc4f02 commit dd80086

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BigtableTableAdminSettings.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,17 @@ public String toString() {
128128
.add("updateTableOperationSettings", stubSettings.updateTableOperationSettings())
129129
.add("copyBackupSettings", stubSettings.copyBackupSettings())
130130
.add("copyBackupOperationSettings", stubSettings.copyBackupOperationSettings())
131+
.add("createAuthorizedViewSettings", stubSettings.createAuthorizedViewSettings())
132+
.add(
133+
"createAuthorizedViewOperationSettings",
134+
stubSettings.createAuthorizedViewOperationSettings())
135+
.add("updateAuthorizedViewSettings", stubSettings.updateAuthorizedViewSettings())
136+
.add(
137+
"updateAuthorizedViewOperationSettings",
138+
stubSettings.updateAuthorizedViewOperationSettings())
139+
.add("deleteAuthorizedViewSettings", stubSettings.deleteAuthorizedViewSettings())
140+
.add("listAuthorizedViewsSettings", stubSettings.listAuthorizedViewsSettings())
141+
.add("getAuthorizedViewSettings", stubSettings.getAuthorizedViewSettings())
131142
.toString();
132143
}
133144

google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BigtableTableAdminSettingsTest.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@ public void testStubSettings() throws IOException {
139139
"updateTableOperationSettings",
140140
"copyBackupSettings",
141141
"copyBackupOperationSettings",
142+
"createAuthorizedViewSettings",
143+
"createAuthorizedViewOperationSettings",
144+
"updateAuthorizedViewSettings",
145+
"updateAuthorizedViewOperationSettings",
146+
"deleteAuthorizedViewSettings",
147+
"listAuthorizedViewsSettings",
148+
"getAuthorizedViewSettings",
142149
};
143150

144151
@Test

0 commit comments

Comments
 (0)