Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzelin committed Jun 20, 2024
1 parent e825c3e commit 54a353a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -695,8 +695,9 @@ public void testNoPrimaryKey() {
.satisfies(
anyCauseMatches(
IllegalArgumentException.class,
"Primary keys are not specified. "
+ "Also, can't infer primary keys from source table schemas because "
"Failed to set specified primary keys for sink table "
+ tableName
+ ". Also, can't infer primary keys from source table schemas because "
+ "source tables have no primary keys or have different primary keys."));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,9 @@ public void testNoPrimaryKey() {
.satisfies(
anyCauseMatches(
IllegalArgumentException.class,
"Primary keys are not specified. "
+ "Also, can't infer primary keys from source table schemas because "
"Failed to set specified primary keys for sink table "
+ tableName
+ ". Also, can't infer primary keys from source table schemas because "
+ "source tables have no primary keys or have different primary keys."));
}

Expand Down

0 comments on commit 54a353a

Please sign in to comment.