Ver Fonte

Drop test dependent on the Go release due to the difference
between int and int64.

Gustavo Niemeyer há 13 anos atrás
pai
commit
857a0b2759
1 ficheiros alterados com 0 adições e 1 exclusões
  1. 0 1
      decode_test.go

+ 0 - 1
decode_test.go

@@ -23,7 +23,6 @@ var unmarshalTests = []struct {
 	{"v: 10", map[string]interface{}{"v": 10}},
 	{"v: 0b10", map[string]interface{}{"v": 2}},
 	{"v: 0xA", map[string]interface{}{"v": 10}},
-	{"v: 4294967296", map[string]interface{}{"v": int(4294967296)}},
 	{"v: 4294967296", map[string]int64{"v": 4294967296}},
 	{"v: 0.1", map[string]interface{}{"v": 0.1}},
 	{"v: .1", map[string]interface{}{"v": 0.1}},