aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/db/store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/k8splugin/db/store_test.go')
-rw-r--r--src/k8splugin/db/store_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/db/store_test.go b/src/k8splugin/db/store_test.go
index 9bbe4a92..eed7065f 100644
--- a/src/k8splugin/db/store_test.go
+++ b/src/k8splugin/db/store_test.go
@@ -23,9 +23,9 @@ import (
func TestCreateDBClient(t *testing.T) {
t.Run("Successfully create DB client", func(t *testing.T) {
- expected := &ConsulStore{}
+ expected := &MongoStore{}
- err := CreateDBClient("consul")
+ err := CreateDBClient("mongo")
if err != nil {
t.Fatalf("CreateDBClient returned an error (%s)", err)
}