aboutsummaryrefslogtreecommitdiff
path: root/application_context_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'application_context_test.go')
-rw-r--r--application_context_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/application_context_test.go b/application_context_test.go
index eed0fd6..28c81a5 100644
--- a/application_context_test.go
+++ b/application_context_test.go
@@ -10,7 +10,7 @@ func TestCreateApplicationContext(t *testing.T) {
wrapper := NewTestStorageWrapper(t)
wrapper.AddCollection(Settings)
- appContext, err := CreateApplicationContext(wrapper.Storage)
+ appContext, err := CreateApplicationContext(wrapper.Storage, "test")
assert.NoError(t, err)
assert.False(t, appContext.IsConfigured)
assert.Zero(t, appContext.Config)
@@ -39,7 +39,7 @@ func TestCreateApplicationContext(t *testing.T) {
appContext.SetConfig(config)
appContext.SetAccounts(accounts)
- checkAppContext, err := CreateApplicationContext(wrapper.Storage)
+ checkAppContext, err := CreateApplicationContext(wrapper.Storage, "test")
assert.NoError(t, err)
assert.True(t, checkAppContext.IsConfigured)
assert.Equal(t, checkAppContext.Config, config)