Compare commits

...

1 Commits

Author SHA1 Message Date
vmfunc 8421cb8daa test(scan): fix integration_test SQL arity after calibrate param
#180 added the calibrate bool to SQL but the integration-tagged test
(only built under -tags=integration, outside normal CI) still called the
4-arg form. pass false (no calibration) to restore behavior.
2026-06-22 22:10:40 -07:00
+1 -1
View File
@@ -181,7 +181,7 @@ func TestIntegrationSQL(t *testing.T) {
srv := newVulnApp()
defer srv.Close()
result, err := SQL(srv.URL, 5*time.Second, 5, "")
result, err := SQL(srv.URL, 5*time.Second, 5, "", false)
if err != nil {
t.Fatalf("SQL: %v", err)
}