diff --git a/platformapi/mtwmapi/order_test.go b/platformapi/mtwmapi/order_test.go index a2c314e1..118d18ae 100644 --- a/platformapi/mtwmapi/order_test.go +++ b/platformapi/mtwmapi/order_test.go @@ -257,5 +257,7 @@ func TestLen(t *testing.T) { } func TestName(t *testing.T) { - fmt.Println((10 & 2) != 0) + data := map[int]int{101: 1, 102: 1, 103: 1} + + fmt.Println(data[1] == 1) }