Skip to content

Commit

Permalink
format error string as per go style (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Harindar authored and bradfitz committed Oct 27, 2019
1 parent 4a4ac3f commit 611e8ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singleflight/singleflight_test.go
Expand Up @@ -40,7 +40,7 @@ func TestDo(t *testing.T) {

func TestDoErr(t *testing.T) {
var g Group
someErr := errors.New("Some error")
someErr := errors.New("some error")
v, err := g.Do("key", func() (interface{}, error) {
return nil, someErr
})
Expand Down

0 comments on commit 611e8ac

Please sign in to comment.