| Index: luci_config/appengine/gaeconfig/default_test.go
|
| diff --git a/luci_config/appengine/gaeconfig/default_test.go b/luci_config/appengine/gaeconfig/default_test.go
|
| index b88e5224cd69d4777349164d0ea315e4251fcfb3..5de36e8f14a7930bf5f2ae5bfa64345ceec9d948 100644
|
| --- a/luci_config/appengine/gaeconfig/default_test.go
|
| +++ b/luci_config/appengine/gaeconfig/default_test.go
|
| @@ -103,7 +103,7 @@ func TestDatastoreCacheIntegration(t *testing.T) {
|
| c = settings.Use(c, settings.New(&memSettings))
|
| s := Settings{
|
| CacheExpirationSec: 10,
|
| - DatastoreCacheMode: dsCacheStrict,
|
| + DatastoreCacheMode: DSCacheStrict,
|
| }
|
| putSettings := func() {
|
| if err := settings.GetSettings(c).Set(c, settingsKey, &s, "test harness", "initial settings"); err != nil {
|
| @@ -152,7 +152,7 @@ func TestDatastoreCacheIntegration(t *testing.T) {
|
| }
|
|
|
| Convey(`Disabled, skips datastore cache.`, func() {
|
| - s.DatastoreCacheMode = dsCacheDisabled
|
| + s.DatastoreCacheMode = DSCacheDisabled
|
| putSettings()
|
|
|
| c = installConfig(c)
|
| @@ -168,7 +168,7 @@ func TestDatastoreCacheIntegration(t *testing.T) {
|
| })
|
|
|
| Convey(`Enabled`, func() {
|
| - s.DatastoreCacheMode = dsCacheEnabled
|
| + s.DatastoreCacheMode = DSCacheEnabled
|
| putSettings()
|
|
|
| c = installConfig(c)
|
| @@ -202,7 +202,7 @@ func TestDatastoreCacheIntegration(t *testing.T) {
|
| })
|
|
|
| Convey(`Strict`, func() {
|
| - s.DatastoreCacheMode = dsCacheStrict
|
| + s.DatastoreCacheMode = DSCacheStrict
|
| putSettings()
|
|
|
| c = installConfig(c)
|
|
|