summaryrefslogtreecommitdiff
path: root/test/lib/requires.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/requires.py')
-rw-r--r--test/lib/requires.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/requires.py b/test/lib/requires.py
index ce1cdb6f5..d52d26e32 100644
--- a/test/lib/requires.py
+++ b/test/lib/requires.py
@@ -201,7 +201,7 @@ def subqueries(fn):
)
def intersect(fn):
- """Target database must support INTERSECT or equivlaent."""
+ """Target database must support INTERSECT or equivalent."""
return _chain_decorators_on(
fn,
fails_on('firebird', 'no support for INTERSECT'),
@@ -211,7 +211,7 @@ def intersect(fn):
)
def except_(fn):
- """Target database must support EXCEPT or equivlaent (i.e. MINUS)."""
+ """Target database must support EXCEPT or equivalent (i.e. MINUS)."""
return _chain_decorators_on(
fn,
fails_on('firebird', 'no support for EXCEPT'),