瀏覽代碼

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

Gustavo Niemeyer 13 年之前
父節點
當前提交
857a0b2759
共有 1 個文件被更改,包括 0 次插入1 次删除
  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}},