fix bug:ge not valid check type

This commit is contained in:
Allone8 2023-08-01 14:07:53 +08:00
parent 1c38e33afa
commit dc3ad5cdd1
1 changed files with 1 additions and 1 deletions

View File

@ -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)