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

Unified Diff: luci_config/server/cfgclient/config_test.go

Issue 2801463002: Milo: Use custom config caching layer (Closed)
Patch Set: Review: Remove double logging Created 3 years, 8 months 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 | « luci_config/server/cfgclient/backend/erroring/erroring.go ('k') | milo/appengine/buildbot/pubsub.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: luci_config/server/cfgclient/config_test.go
diff --git a/luci_config/server/cfgclient/config_test.go b/luci_config/server/cfgclient/config_test.go
index 7607f4006b0713829b968828d3a276179fbe4df2..71ae7776e7dda180cb788b7e4c693d3ca437945a 100644
--- a/luci_config/server/cfgclient/config_test.go
+++ b/luci_config/server/cfgclient/config_test.go
@@ -9,6 +9,7 @@ import (
"net/url"
"testing"
+ "github.com/luci/luci-go/common/config"
"github.com/luci/luci-go/common/errors"
"github.com/luci/luci-go/luci_config/server/cfgclient/backend"
@@ -54,6 +55,10 @@ func (tb *testingBackend) ConfigSetURL(c context.Context, configSet string, p ba
return tb.url, tb.err
}
+func (tb *testingBackend) GetConfigInterface(c context.Context, a backend.Authority) config.Interface {
+ panic("not supported")
+}
+
func (tb *testingBackend) cloneItems() []*backend.Item {
clones := make([]*backend.Item, len(tb.items))
for i, it := range tb.items {
« no previous file with comments | « luci_config/server/cfgclient/backend/erroring/erroring.go ('k') | milo/appengine/buildbot/pubsub.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698