Skip to content

Commit

Permalink
fixing tests which had bad input :(
Browse files Browse the repository at this point in the history
  • Loading branch information
heavycrystal committed Jan 7, 2024
1 parent 715fd36 commit 061b851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/bigquery/merge_stmt_generator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func TestGenerateUpdateStatement_WithUnchangedToastCols(t *testing.T) {
},
}
allCols := []string{"col1", "col2", "col3"}
unchangedToastCols := []string{"", "col2, col3", "col2", "col3"}
unchangedToastCols := []string{"", "col2,col3", "col2", "col3"}

expected := []string{
"WHEN MATCHED AND _rt!=2 AND _ut=''" +
Expand Down

0 comments on commit 061b851

Please sign in to comment.