build: apply gofmt from go1.13 to change case of number literals

This commit is contained in:
Nick Craig-Wood
2019-09-05 13:59:06 +01:00
parent 7b0966880e
commit ffa1dac10b
16 changed files with 37 additions and 37 deletions

View File

@@ -100,8 +100,8 @@ func TestParamsGetInt64(t *testing.T) {
{int(12), 12, ""},
{int64(13), 13, ""},
{float64(14), 14, ""},
{float64(9.3E18), 0, "overflows int64"},
{float64(-9.3E18), 0, "overflows int64"},
{float64(9.3e18), 0, "overflows int64"},
{float64(-9.3e18), 0, "overflows int64"},
} {
t.Run(fmt.Sprintf("%T=%v", test.value, test.value), func(t *testing.T) {
in := Params{