Skip to content

Commit 611e8ac

Browse files
Aditya Harindarbradfitz
authored andcommitted
format error string as per go style (#127)
1 parent 4a4ac3f commit 611e8ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singleflight/singleflight_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func TestDo(t *testing.T) {
4040

4141
func TestDoErr(t *testing.T) {
4242
var g Group
43-
someErr := errors.New("Some error")
43+
someErr := errors.New("some error")
4444
v, err := g.Do("key", func() (interface{}, error) {
4545
return nil, someErr
4646
})

0 commit comments

Comments
 (0)