aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkg/datamaps/writer_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/datamaps/writer_test.go b/pkg/datamaps/writer_test.go
index 7a689b5..3124455 100644
--- a/pkg/datamaps/writer_test.go
+++ b/pkg/datamaps/writer_test.go
@@ -97,7 +97,8 @@ func TestWriteMaster(t *testing.T) {
}
got_s := strings.TrimSuffix(string(got), "\n")
if strings.Compare(got_s, test.value) != 0 {
- t.Errorf("when testing the database, we expected %s but got %s", test.value, got_s)
+ t.Errorf("when testing the database, for key %s in file %s we expected %s but got %s", test.key,
+ test.filename, test.value, got_s)
}
}