From c9175d681bcd2e3c4d8c3fee7cc8114731bb07a7 Mon Sep 17 00:00:00 2001 From: Riley Guerin Date: Sun, 28 Jun 2015 16:54:05 -0700 Subject: [PATCH] fixed typo in graphdb_test failure message Signed-off-by: Riley Guerin --- pkg/graphdb/graphdb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/graphdb/graphdb_test.go b/pkg/graphdb/graphdb_test.go index 1cd223bd9c..6912ab607e 100644 --- a/pkg/graphdb/graphdb_test.go +++ b/pkg/graphdb/graphdb_test.go @@ -121,7 +121,7 @@ func TestParents(t *testing.T) { } if len(parents) != 1 { - t.Fatalf("Expected 2 entries for %s got %d", key, len(parents)) + t.Fatalf("Expected 1 entry for %s got %d", key, len(parents)) } if parents[0] != p {