diff options
Diffstat (limited to '')
-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 e3e3e05..87801a0 100644 --- a/pkg/datamaps/db_test.go +++ b/pkg/datamaps/db_test.go @@ -124,7 +124,7 @@ func TestImportSimpleTemplate(t *testing.T) { } got_s := strings.TrimSuffix(string(got), "\n") if strings.Compare(got_s, test.value) != 0 { - t.Errorf("we wanted %s but got %s", test.value, got_s) + t.Errorf("we wanted %s in test_template.xlsm but got %s", test.value, got_s) } } } |