Skip to content

Commit

Permalink
Regression: Unit test failing due to recent PR merging using code cha…
Browse files Browse the repository at this point in the history
…nged in bbfc84c (#2124)

- fatalIfError was renamed to testutils.FatalIfError()in this commit, but recent commit was still using old name and git merge was unable to detect this conflict.
  • Loading branch information
sanyamsinghal authored Dec 27, 2024
1 parent bbfc84c commit d148a04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ func TestCopyUnsupportedConstructIssuesDetected(t *testing.T) {

for stmt, expectedIssues := range expectedIssues {
issues, err := parserIssueDetector.getDMLIssues(stmt)
fatalIfError(t, err)
testutils.FatalIfError(t, err)
assert.Equal(t, len(expectedIssues), len(issues))
for _, expectedIssue := range expectedIssues {
found := slices.ContainsFunc(issues, func(queryIssue QueryIssue) bool {
Expand Down

0 comments on commit d148a04

Please sign in to comment.