Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1995)

Unified Diff: monitoring/go/buildbot_ingest/bycommit.go

Issue 777413002: Add new tests to presubmit, fix errors (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « monitoring/go/alertserver/main.go ('k') | monitoring/go/datahopper/main.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: monitoring/go/buildbot_ingest/bycommit.go
diff --git a/monitoring/go/buildbot_ingest/bycommit.go b/monitoring/go/buildbot_ingest/bycommit.go
index b9db779449603051bfba25e07e6a6e90bbbaf721..3e21711798c02cdd75f834bbeb2579a83bba8725 100644
--- a/monitoring/go/buildbot_ingest/bycommit.go
+++ b/monitoring/go/buildbot_ingest/bycommit.go
@@ -141,7 +141,7 @@ func getLastProcessedBuildOnBranch(dbClient *influxdb.Client, builder, master, b
}
series := results[0]
if series.Name != SERIES_BUILDBOT_BYCOMMIT {
- return -1, fmt.Errorf("Query returned the wrong series: %q; expected: %s got: %S", q, SERIES_BUILDBOT_BYCOMMIT, series.Name)
+ return -1, fmt.Errorf("Query returned the wrong series: %q; expected: %s got: %s", q, SERIES_BUILDBOT_BYCOMMIT, series.Name)
}
if len(series.Columns) != 2 {
return -1, fmt.Errorf("Query returned incorrect number of columns: %q, %v", q, series.Columns)
« no previous file with comments | « monitoring/go/alertserver/main.go ('k') | monitoring/go/datahopper/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698