Kaynağa Gözat

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

Gustavo Niemeyer 13 yıl önce
ebeveyn
işleme
857a0b2759
1 değiştirilmiş dosya ile 0 ekleme ve 1 silme
  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}},