aboutsummaryrefslogtreecommitdiffstats
path: root/formats/objfile/reader_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'formats/objfile/reader_test.go')
-rw-r--r--formats/objfile/reader_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/formats/objfile/reader_test.go b/formats/objfile/reader_test.go
index caebb60..b2c3d0c 100644
--- a/formats/objfile/reader_test.go
+++ b/formats/objfile/reader_test.go
@@ -19,16 +19,16 @@ var _ = Suite(&SuiteReader{})
func (s *SuiteReader) TestReadObjfile(c *C) {
for k, fixture := range objfileFixtures {
- comment := fmt.Sprintf("test %d: ", k)
+ com := fmt.Sprintf("test %d: ", k)
hash := core.NewHash(fixture.hash)
content, _ := base64.StdEncoding.DecodeString(fixture.content)
data, _ := base64.StdEncoding.DecodeString(fixture.data)
- testReader(c, bytes.NewReader(data), hash, fixture.t, content, comment)
+ testReader(c, bytes.NewReader(data), hash, fixture.t, content, com)
}
}
-func testReader(c *C, source io.Reader, hash core.Hash, typ core.ObjectType, content []byte, comment string) {
+func testReader(c *C, source io.Reader, hash core.Hash, typ core.ObjectType, content []byte, com string) {
r, err := NewReader(source)
c.Assert(err, IsNil)
c.Assert(r.Type(), Equals, typ)