diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-07-26 20:39:18 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-07-26 20:39:18 +0100 |
commit | b059e3ffb9a37fc0a941458d2cd143fad67a105f (patch) | |
tree | 30e851f20ae50e56694071a7ae34b6e70cf47cb1 /pkg/datamaps/db_test.go | |
parent | 44a88a96c5f27a342275b3c43b277c7881f69b22 (diff) |
lots of tidy
Diffstat (limited to '')
-rw-r--r-- | pkg/datamaps/db_test.go | 4 |
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 { |