reduce the unit test map to 1 element so the encoding is consistent

otherwise, since the map iterates in randomish order, some of the time
the element order does not match the unit test expected result, causing
the unit test to fail unnecessarily.
This commit is contained in:
Nicolas S. Dade
2018-03-07 03:26:27 -08:00
parent 8f7b30c7ef
commit 042f8eb204
+2 -3
View File
@@ -22,9 +22,8 @@ var customMapKeyTypeValue CustomMapKeyType
func init() {
customMapKeyTypeValue.Map = map[customKeyType]int{
customKeyType{0x01, 0x01}: 1,
customKeyType{0x02, 0x02}: 2,
customKeyType{0x01, 0x02}: 3,
}
}
var customMapKeyTypeValueString = `{"Map":{"0101":1,"0202":2}}`
var customMapKeyTypeValueString = `{"Map":{"0102":3}}`