diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-07-28 07:29:08 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-07-28 07:29:08 +0100 |
commit | 79311f9f3d806b57168b7aba65235f2470555567 (patch) | |
tree | ab811ae5913707f5ffc12cbfcc5ffdb4462005a1 /pkg/datamaps/db_test.go | |
parent | dc2f030758be0ace3f382982b30cd58fa552a2cc (diff) |
working on failing test where dm not work when sheets not sequential - added Makefile
Diffstat (limited to 'pkg/datamaps/db_test.go')
-rw-r--r-- | pkg/datamaps/db_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/datamaps/db_test.go b/pkg/datamaps/db_test.go index 3ca9054..93f3a39 100644 --- a/pkg/datamaps/db_test.go +++ b/pkg/datamaps/db_test.go @@ -13,7 +13,7 @@ func TestOpenSQLiteFile(t *testing.T) { }() if err != nil { - t.Fatal("Expected to be able to set up the database.") + t.Fatalf("%v\ndatamaps-log: Expected to be able to set up the database.", err) } stmt := `insert into datamap(id, name) values(1,'cock')` |