@@ -61,31 +61,31 @@ func TestOdbStream(t *testing.T) {
61
61
62
62
_ , _ = seedTestRepo (t , repo )
63
63
64
- odb , error := repo .Odb ()
65
- checkFatal (t , error )
64
+ odb , err := repo .Odb ()
65
+ checkFatal (t , err )
66
66
67
67
str := "hello, world!"
68
68
69
- writeStream , error := odb .NewWriteStream (int64 (len (str )), ObjectBlob )
70
- checkFatal (t , error )
71
- n , error := io .WriteString (writeStream , str )
72
- checkFatal (t , error )
69
+ writeStream , err := odb .NewWriteStream (int64 (len (str )), ObjectBlob )
70
+ checkFatal (t , err )
71
+ n , err := io .WriteString (writeStream , str )
72
+ checkFatal (t , err )
73
73
if n != len (str ) {
74
74
t .Fatalf ("Bad write length %v != %v" , n , len (str ))
75
75
}
76
76
77
- error = writeStream .Close ()
78
- checkFatal (t , error )
77
+ err = writeStream .Close ()
78
+ checkFatal (t , err )
79
79
80
- expectedId , error := NewOid ("30f51a3fba5274d53522d0f19748456974647b4f" )
81
- checkFatal (t , error )
80
+ expectedId , err := NewOid ("30f51a3fba5274d53522d0f19748456974647b4f" )
81
+ checkFatal (t , err )
82
82
if writeStream .Id .Cmp (expectedId ) != 0 {
83
83
t .Fatal ("Wrong data written" )
84
84
}
85
85
86
- readStream , error := odb .NewReadStream (& writeStream .Id )
87
- checkFatal (t , error )
88
- data , error := ioutil .ReadAll (readStream )
86
+ readStream , err := odb .NewReadStream (& writeStream .Id )
87
+ checkFatal (t , err )
88
+ data , err := ioutil .ReadAll (readStream )
89
89
if str != string (data ) {
90
90
t .Fatalf ("Wrong data read %v != %v" , str , string (data ))
91
91
}
@@ -98,8 +98,8 @@ func TestOdbHash(t *testing.T) {
98
98
99
99
_ , _ = seedTestRepo (t , repo )
100
100
101
- odb , error := repo .Odb ()
102
- checkFatal (t , error )
101
+ odb , err := repo .Odb ()
102
+ checkFatal (t , err )
103
103
104
104
str := `tree 115fcae49287c82eb55bb275cbbd4556fbed72b7
105
105
parent 66e1c476199ebcd3e304659992233132c5a52c6c
109
109
Initial commit.`
110
110
111
111
for _ , data := range [][]byte {[]byte (str ), doublePointerBytes ()} {
112
- oid , error := odb .Hash (data , ObjectCommit )
113
- checkFatal (t , error )
112
+ oid , err := odb .Hash (data , ObjectCommit )
113
+ checkFatal (t , err )
114
114
115
- coid , error := odb .Write (data , ObjectCommit )
116
- checkFatal (t , error )
115
+ coid , err := odb .Write (data , ObjectCommit )
116
+ checkFatal (t , err )
117
117
118
118
if oid .Cmp (coid ) != 0 {
119
119
t .Fatal ("Hash and write Oids are different" )
0 commit comments