summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMakefile1
-rw-r--r--plugins/kv/interface.go2
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 87f9f1a7..30eb2942 100755
--- a/Makefile
+++ b/Makefile
@@ -51,3 +51,4 @@ lint: ## Run application linters
golangci-lint run
kv:
go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/boltdb
+ go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/memory
diff --git a/plugins/kv/interface.go b/plugins/kv/interface.go
index f17754e6..3512fd73 100644
--- a/plugins/kv/interface.go
+++ b/plugins/kv/interface.go
@@ -42,4 +42,4 @@ type Storage interface {
// Close closes the storage and underlying resources.
Close() error
-} \ No newline at end of file
+}