aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/datamaps/db_test.go
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-07-26 20:39:18 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-07-26 20:39:18 +0100
commitb059e3ffb9a37fc0a941458d2cd143fad67a105f (patch)
tree30e851f20ae50e56694071a7ae34b6e70cf47cb1 /pkg/datamaps/db_test.go
parent44a88a96c5f27a342275b3c43b277c7881f69b22 (diff)
lots of tidy
Diffstat (limited to '')
-rw-r--r--pkg/datamaps/db_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/datamaps/db_test.go b/pkg/datamaps/db_test.go
index 4d2179f..2055d8a 100644
--- a/pkg/datamaps/db_test.go
+++ b/pkg/datamaps/db_test.go
@@ -5,7 +5,7 @@ import (
)
func TestOpenSQLiteFile(t *testing.T) {
- db, err := SetupDB("./testdata/test.db")
+ db, err := setupDB("./testdata/test.db")
defer db.Close()
if err != nil {
@@ -37,7 +37,7 @@ func TestOpenSQLiteFile(t *testing.T) {
}
func TestDatamapGoesIntoDB(t *testing.T) {
- db, err := SetupDB("./testdata/test.db")
+ db, err := setupDB("./testdata/test.db")
defer db.Close()
if err != nil {