diff --git a/platformapi/uuptapi/uupt_test.go b/platformapi/uuptapi/uupt_test.go index 2fd8331d..8118a8fa 100644 --- a/platformapi/uuptapi/uupt_test.go +++ b/platformapi/uuptapi/uupt_test.go @@ -105,6 +105,7 @@ type tStruct struct { } func Test(t *testing.T) { - a := tStruct{name: "11"} - fmt.Println(a != tStruct{}) + zero := 0 + a := int(zero) * 100 + fmt.Printf("a====%d", a) }