test uint builtin typecheck overflow values for []byte
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
53eaec0c50
commit
503f01bddd
|
@ -96,6 +96,11 @@ func TestUint_Values(t *testing.T) {
|
|||
// strane offset because of how precision works
|
||||
{fmt.Sprintf("%f", float64(math.MaxUint64+1024*3)), false},
|
||||
|
||||
{[]byte(fmt.Sprintf("%d", math.MaxInt64)), true},
|
||||
{[]byte(fmt.Sprintf("%d", uint(math.MaxUint64))), true},
|
||||
// strane offset because of how precision works
|
||||
{[]byte(fmt.Sprintf("%f", float64(math.MaxUint64+1024*3))), false},
|
||||
|
||||
{"string", false},
|
||||
{[]byte("bytes"), false},
|
||||
{-0.1, false},
|
||||
|
|
Loading…
Reference in New Issue