summaryrefslogtreecommitdiff
path: root/src/pkg/encoding/git85/git_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/encoding/git85/git_test.go')
-rw-r--r--src/pkg/encoding/git85/git_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/encoding/git85/git_test.go b/src/pkg/encoding/git85/git_test.go
index a31f14d3c..c76385c35 100644
--- a/src/pkg/encoding/git85/git_test.go
+++ b/src/pkg/encoding/git85/git_test.go
@@ -17,7 +17,7 @@ type testpair struct {
func testEqual(t *testing.T, msg string, args ...interface{}) bool {
if args[len(args)-2] != args[len(args)-1] {
- t.Errorf(msg, args)
+ t.Errorf(msg, args...)
return false
}
return true
@@ -40,7 +40,7 @@ func TestGitTable(t *testing.T) {
var gitPairs = []testpair{
// Wikipedia example, adapted.
- testpair{
+ {
"Man is distinguished, not only by his reason, but by this singular passion from " +
"other animals, which is a lust of the mind, that by a perseverance of delight in " +
"the continued and indefatigable generation of knowledge, exceeds the short " +
@@ -144,8 +144,8 @@ func TestDecodeCorrupt(t *testing.T) {
p int
}
examples := []corrupt{
- corrupt{"v", 0},
- corrupt{"!z!!!!!!!!!", 0},
+ {"v", 0},
+ {"!z!!!!!!!!!", 0},
}
for _, e := range examples {