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

Unified Diff: logdog/appengine/coordinator/context_test.go

Issue 2575383002: Add server/cache support to gaeconfig. (Closed)
Patch Set: Un-collapse. Created 3 years, 11 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 | « logdog/appengine/coordinator/context.go ('k') | logdog/appengine/coordinator/coordinatorTest/context.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: logdog/appengine/coordinator/context_test.go
diff --git a/logdog/appengine/coordinator/context_test.go b/logdog/appengine/coordinator/context_test.go
index 428f7716fcfeff5ce3a8061cf98acd25c333208f..330cfa314649aad2447fd1656a4b69e9407b6f98 100644
--- a/logdog/appengine/coordinator/context_test.go
+++ b/logdog/appengine/coordinator/context_test.go
@@ -10,10 +10,10 @@ import (
"testing"
"github.com/luci/gae/impl/memory"
- luciConfig "github.com/luci/luci-go/common/config"
"github.com/luci/luci-go/logdog/api/config/svcconfig"
"github.com/luci/luci-go/logdog/appengine/coordinator/config"
"github.com/luci/luci-go/luci_config/common/cfgtypes"
+ "github.com/luci/luci-go/luci_config/server/cfgclient"
"github.com/luci/luci-go/server/auth"
"github.com/luci/luci-go/server/auth/authtest"
"github.com/luci/luci-go/server/auth/identity"
@@ -39,7 +39,7 @@ func (s *testServices) ProjectConfig(c context.Context, project cfgtypes.Project
cfg, ok := s.configs[project]
switch {
case !ok:
- return nil, luciConfig.ErrNoConfig
+ return nil, cfgclient.ErrNoConfig
case cfg == nil:
return nil, config.ErrInvalidConfig
« no previous file with comments | « logdog/appengine/coordinator/context.go ('k') | logdog/appengine/coordinator/coordinatorTest/context.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698