mirror of
https://github.com/netbirdio/easyjson.git
synced 2026-05-22 18:44:42 -07:00
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:
@@ -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}}`
|
||||
|
||||
Reference in New Issue
Block a user