| OLD | NEW |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package settings | 5 package common |
| 6 | 6 |
| 7 import ( | 7 import ( |
| 8 "strings" | 8 "strings" |
| 9 "testing" | 9 "testing" |
| 10 | 10 |
| 11 "github.com/luci/gae/impl/memory" | 11 "github.com/luci/gae/impl/memory" |
| 12 memcfg "github.com/luci/luci-go/common/config/impl/memory" | 12 memcfg "github.com/luci/luci-go/common/config/impl/memory" |
| 13 "github.com/luci/luci-go/common/logging/gologger" | 13 "github.com/luci/luci-go/common/logging/gologger" |
| 14 "github.com/luci/luci-go/luci_config/server/cfgclient/backend/testconfig
" | 14 "github.com/luci/luci-go/luci_config/server/cfgclient/backend/testconfig
" |
| 15 | 15 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 var barCfg = ` | 82 var barCfg = ` |
| 83 ID: "foo" | 83 ID: "foo" |
| 84 ` | 84 ` |
| 85 | 85 |
| 86 var mockedConfigs = map[string]memcfg.ConfigSet{ | 86 var mockedConfigs = map[string]memcfg.ConfigSet{ |
| 87 "projects/foo.git": { | 87 "projects/foo.git": { |
| 88 "luci-milo.cfg": fooCfg, | 88 "luci-milo.cfg": fooCfg, |
| 89 }, | 89 }, |
| 90 } | 90 } |
| OLD | NEW |