Fix lint error
All checks were successful
CI / release-test (push) Successful in 16s

This commit is contained in:
wispem-wantex 2025-08-23 18:57:13 -07:00
parent 100b53d799
commit 7449e7dc10

View File

@ -44,7 +44,11 @@ func TestFailureCases(t *testing.T) {
if is_failure_expected {
t.Errorf("Expected check '%s' to fail, but it passed: %s", check.Name, test_case.sqlFile)
} else {
t.Errorf("Expected check '%s' to pass, but it failed: %s (%q.%q)", check.Name, test_case.sqlFile, results[0].TableName, results[0].ColumnName)
t.Errorf("Expected check '%s' to pass, but it failed: %s (%q.%q)",
check.Name,
test_case.sqlFile,
results[0].TableName, results[0].ColumnName,
)
}
}
}