summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-10-07 13:06:09 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-10-08 20:42:50 +0300
commite47063bfe0de1318c12a4f9ef67b9538cad34489 (patch)
tree898a00af2714e1e52b8decb69b1776ad95030def /test/sql
parent80861dffa9f2a2564dd5e854d97006d9fff48a18 (diff)
downloadsqlalchemy-e47063bfe0de1318c12a4f9ef67b9538cad34489.tar.gz
Spelling fixes
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_generative.py4
-rw-r--r--test/sql/test_inspect.py2
-rw-r--r--test/sql/test_resultset.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/test/sql/test_generative.py b/test/sql/test_generative.py
index 81c589d11..6335a3cf1 100644
--- a/test/sql/test_generative.py
+++ b/test/sql/test_generative.py
@@ -1814,7 +1814,7 @@ class ValuesBaseTest(fixtures.TestBase, AssertsCompiledSQL):
i = i.values((5, 6, 7))
eq_(i.parameters, {"col1": 5, "col2": 6, "col3": 7})
- def test_kw_and_dict_simulatenously_single(self):
+ def test_kw_and_dict_simultaneously_single(self):
i = t1.insert()
i = i.values({"col1": 5}, col2=7)
eq_(i.parameters, {"col1": 5, "col2": 7})
@@ -1904,7 +1904,7 @@ class ValuesBaseTest(fixtures.TestBase, AssertsCompiledSQL):
i = t1.insert()
assert_raises_message(
exc.ArgumentError,
- "Can't pass kwargs and multiple parameter sets simultaenously",
+ "Can't pass kwargs and multiple parameter sets simultaneously",
i.values, [{"col1": 5}], col2=7
)
diff --git a/test/sql/test_inspect.py b/test/sql/test_inspect.py
index 12d377e51..60267542a 100644
--- a/test/sql/test_inspect.py
+++ b/test/sql/test_inspect.py
@@ -36,7 +36,7 @@ class TestCoreInspection(fixtures.TestBase):
def test_no_clause_element_on_clauseelement(self):
# re [ticket:3802], there are in the wild examples
# of looping over __clause_element__, therefore the
- # absense of __clause_element__ as a test for "this is the clause
+ # absence of __clause_element__ as a test for "this is the clause
# element" must be maintained
x = Column('foo', Integer)
diff --git a/test/sql/test_resultset.py b/test/sql/test_resultset.py
index f52412b68..64d496a8f 100644
--- a/test/sql/test_resultset.py
+++ b/test/sql/test_resultset.py
@@ -424,7 +424,7 @@ class ResultProxyTest(fixtures.TablesTest):
dict(user_id=1, user_name='john'),
)
- # unary experssions
+ # unary expressions
r = select([users.c.user_name.distinct()]).order_by(
users.c.user_name).execute().first()
eq_(r[users.c.user_name], 'john')