diff options
author | Robert Griesemer <gri@golang.org> | 2009-11-09 12:07:39 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-11-09 12:07:39 -0800 |
commit | e940edc7a026293153ba09ece40e8092a2fc2463 (patch) | |
tree | c94a425c84b7a48f91a5d76a222effad70c9a88c /src/pkg/patch/patch_test.go | |
parent | e067f862f1774ab89a2096a88571a94e3b9cd353 (diff) | |
download | golang-e940edc7a026293153ba09ece40e8092a2fc2463.tar.gz |
remove semis after statements in one-statement statement lists
R=rsc, r
http://go/go-review/1025029
Diffstat (limited to 'src/pkg/patch/patch_test.go')
-rw-r--r-- | src/pkg/patch/patch_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/patch/patch_test.go b/src/pkg/patch/patch_test.go index b4c64b31b..dd610eed6 100644 --- a/src/pkg/patch/patch_test.go +++ b/src/pkg/patch/patch_test.go @@ -34,7 +34,7 @@ func TestFileApply(t *testing.T) { continue; } if s := string(new); s != test.out { - t.Errorf("#%d:\n--- have\n%s--- want\n%s", i, s, test.out); + t.Errorf("#%d:\n--- have\n%s--- want\n%s", i, s, test.out) } } } |