provided template function eq,lt unit test.

This commit is contained in:
letu 2021-06-25 00:51:55 +08:00
parent 99b7c0bae4
commit 92b520d810

View File

@ -619,6 +619,8 @@ func eq(arg1 interface{}, arg2 ...interface{}) (bool, error) {
} }
if truth { if truth {
return true, nil return true, nil
} else {
return false, nil
} }
} }
switch k1 { switch k1 {