From b276d117b1a74030bcdfc6e9f732e125607cd6bc Mon Sep 17 00:00:00 2001 From: kortschak Date: Sat, 26 Jul 2014 12:03:34 +0930 Subject: [PATCH] Fix documentation error --- nquads/nquads_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nquads/nquads_test.go b/nquads/nquads_test.go index 827691d..adbd8f7 100644 --- a/nquads/nquads_test.go +++ b/nquads/nquads_test.go @@ -509,13 +509,13 @@ func TestRDFWorkingGroupSuit(t *testing.T) { } { suite, err := os.Open(file) if err != nil { - t.Fatalf("Failed to open N-Quads test suite in %q: %v", file, err) + t.Fatalf("Failed to open test suite in %q: %v", file, err) } defer suite.Close() r, err := gzip.NewReader(suite) if err != nil { - t.Fatalf("Failed to uncompress N-Quads test suite in %q: %v", file, err) + t.Fatalf("Failed to uncompress test suite in %q: %v", file, err) } tr := tar.NewReader(r)