diff --git a/src/pytest_yaml_yoyo/runner.py b/src/pytest_yaml_yoyo/runner.py index 31941e1..12dde02 100644 --- a/src/pytest_yaml_yoyo/runner.py +++ b/src/pytest_yaml_yoyo/runner.py @@ -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)