fix test incompat for 4.2

This commit is contained in:
Bastien Gerard
2021-03-04 00:10:08 +01:00
parent f244207168
commit b9b536133d
2 changed files with 4 additions and 9 deletions

View File

@@ -38,10 +38,6 @@ def requires_mongodb_lt_42(func):
return _decorated_with_ver_requirement(func, (4, 2), oper=operator.lt)
def requires_mongodb_lte_42(func):
return _decorated_with_ver_requirement(func, (4, 2), oper=operator.le)
def requires_mongodb_gte_44(func):
return _decorated_with_ver_requirement(func, (4, 4), oper=operator.ge)