Skip to content

Commit

Permalink
Fix unit test broken by the new authorized views apis
Browse files Browse the repository at this point in the history
Change-Id: I075e896a696d83c70f72337f2921d3285e408e1e
  • Loading branch information
Lixia Chen committed Mar 5, 2024
1 parent acc4f02 commit dd80086
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,17 @@ public String toString() {
.add("updateTableOperationSettings", stubSettings.updateTableOperationSettings())
.add("copyBackupSettings", stubSettings.copyBackupSettings())
.add("copyBackupOperationSettings", stubSettings.copyBackupOperationSettings())
.add("createAuthorizedViewSettings", stubSettings.createAuthorizedViewSettings())
.add(
"createAuthorizedViewOperationSettings",
stubSettings.createAuthorizedViewOperationSettings())
.add("updateAuthorizedViewSettings", stubSettings.updateAuthorizedViewSettings())
.add(
"updateAuthorizedViewOperationSettings",
stubSettings.updateAuthorizedViewOperationSettings())
.add("deleteAuthorizedViewSettings", stubSettings.deleteAuthorizedViewSettings())
.add("listAuthorizedViewsSettings", stubSettings.listAuthorizedViewsSettings())
.add("getAuthorizedViewSettings", stubSettings.getAuthorizedViewSettings())
.toString();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ public void testStubSettings() throws IOException {
"updateTableOperationSettings",
"copyBackupSettings",
"copyBackupOperationSettings",
"createAuthorizedViewSettings",
"createAuthorizedViewOperationSettings",
"updateAuthorizedViewSettings",
"updateAuthorizedViewOperationSettings",
"deleteAuthorizedViewSettings",
"listAuthorizedViewsSettings",
"getAuthorizedViewSettings",
};

@Test
Expand Down

0 comments on commit dd80086

Please sign in to comment.