diff --git a/pkg/schema/lint/checks_test.go b/pkg/schema/lint/checks_test.go index 76192fa..4323656 100644 --- a/pkg/schema/lint/checks_test.go +++ b/pkg/schema/lint/checks_test.go @@ -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, + ) } } }