fix bug:ge not valid check type
This commit is contained in:
parent
1c38e33afa
commit
dc3ad5cdd1
|
@ -105,7 +105,7 @@ class RunYaml(object):
|
|||
validate.less_than_or_equals(actual_value, expect_value)
|
||||
elif check_type in ["gt", "greater_than"]:
|
||||
validate.greater_than(actual_value, expect_value)
|
||||
elif check_type in ["ge", "greater_than_or_equals"]:
|
||||
elif check_type in ["ge", "greater_than_or_equals","greater_or_equals"]:
|
||||
validate.greater_than_or_equals(actual_value, expect_value)
|
||||
elif check_type in ["ne", "not_equal"]:
|
||||
validate.not_equals(actual_value, expect_value)
|
||||
|
|
Loading…
Reference in New Issue