Compare commits
No commits in common. "503f01bdddd2df36d6eb527fefe3d14aba79d70d" and "77dbc5663b5f38f06af2251dadf88ff203034bbb" have entirely different histories.
503f01bddd
...
77dbc5663b
|
@ -41,18 +41,6 @@ func TestString_AvailableTypes(t *testing.T) {
|
|||
{"string(1 )", false},
|
||||
{"string( 1 )", false},
|
||||
|
||||
{"string()", false},
|
||||
{"string(a)", false},
|
||||
{"string(-1)", false},
|
||||
|
||||
{"string(,)", false},
|
||||
{"string(1,b)", false},
|
||||
{"string(a,b)", false},
|
||||
{"string(a,1)", false},
|
||||
{"string(-1,1)", false},
|
||||
{"string(1,-1)", false},
|
||||
{"string(-1,-1)", false},
|
||||
|
||||
{"string(1,2)", true},
|
||||
{"string(1, 2)", true},
|
||||
{"string(1, 2)", false},
|
||||
|
|
|
@ -96,11 +96,6 @@ 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