diff options
Diffstat (limited to 'src/k8splugin/internal/db/mongo_test.go')
-rw-r--r-- | src/k8splugin/internal/db/mongo_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/internal/db/mongo_test.go b/src/k8splugin/internal/db/mongo_test.go index 3a7e4251..71aaf86e 100644 --- a/src/k8splugin/internal/db/mongo_test.go +++ b/src/k8splugin/internal/db/mongo_test.go @@ -155,7 +155,7 @@ func TestUpdate(t *testing.T) { label: "Successfull update of entry", input: map[string]interface{}{ "coll": "collname", - "key": mockKey{Key: "keyvalue"}, + "key": MockKey{Key: "keyvalue"}, "tag": "metadata", "data": "Data In String Format", }, @@ -184,7 +184,7 @@ func TestUpdate(t *testing.T) { label: "Entry does not exist", input: map[string]interface{}{ "coll": "collname", - "key": mockKey{Key: "keyvalue"}, + "key": MockKey{Key: "keyvalue"}, "tag": "tagName", "data": "Data In String Format", }, |