summaryrefslogtreecommitdiff
path: root/test/dialect
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-01-07 16:42:18 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-01-07 16:42:18 +0000
commit5681d4e4da8ee69d83e9c0103c171d413d4c183e (patch)
tree0fbd708622af483ba6c7b39dc387ee0ac6ded144 /test/dialect
parentad244b9b7577486bd4e22d74d64e35802af84977 (diff)
parent56256b6d132c0deae4368a7d0d04912df9a80fc0 (diff)
downloadsqlalchemy-5681d4e4da8ee69d83e9c0103c171d413d4c183e.tar.gz
Merge "Fix various source comment/doc typos" into main
Diffstat (limited to 'test/dialect')
-rw-r--r--test/dialect/oracle/test_reflection.py2
-rw-r--r--test/dialect/postgresql/test_dialect.py2
-rw-r--r--test/dialect/postgresql/test_query.py2
-rw-r--r--test/dialect/postgresql/test_types.py2
-rw-r--r--test/dialect/test_sqlite.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/dialect/oracle/test_reflection.py b/test/dialect/oracle/test_reflection.py
index acf7d75d5..7dcd5bb1d 100644
--- a/test/dialect/oracle/test_reflection.py
+++ b/test/dialect/oracle/test_reflection.py
@@ -74,7 +74,7 @@ class MultiSchemaTest(fixtures.TestBase, AssertsCompiledSQL):
-- can't make a ref from local schema to the
-- remote schema's table without this,
- -- *and* cant give yourself a grant !
+ -- *and* can't give yourself a grant !
-- so we give it to public. ideas welcome.
grant references on %(test_schema)s.parent to public;
grant references on %(test_schema)s.child to public;
diff --git a/test/dialect/postgresql/test_dialect.py b/test/dialect/postgresql/test_dialect.py
index cd6c127b8..5f33fa46d 100644
--- a/test/dialect/postgresql/test_dialect.py
+++ b/test/dialect/postgresql/test_dialect.py
@@ -236,7 +236,7 @@ $$ LANGUAGE plpgsql;"""
"connection not open",
"could not receive data from server",
"could not send data to server",
- # psycopg2 client errors, psycopg2/conenction.h,
+ # psycopg2 client errors, psycopg2/connection.h,
# psycopg2/cursor.h
"connection already closed",
"cursor already closed",
diff --git a/test/dialect/postgresql/test_query.py b/test/dialect/postgresql/test_query.py
index fdce643f8..4e6ca46c1 100644
--- a/test/dialect/postgresql/test_query.py
+++ b/test/dialect/postgresql/test_query.py
@@ -1649,7 +1649,7 @@ class TableValuedRoundTripTest(fixtures.TestBase):
if cast_fn:
value = cast_fn(value, JSON)
- # why wont this work?!?!?
+ # why won't this work?!?!?
# should be exactly json_to_recordset(to_json('string'::text))
#
fn = (
diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py
index f39939762..e8c18acb0 100644
--- a/test/dialect/postgresql/test_types.py
+++ b/test/dialect/postgresql/test_types.py
@@ -3412,7 +3412,7 @@ class _RangeTypeRoundTrip(fixtures.TablesTest):
extras = psycopg_extras()
else:
- assert False, "Unknonw dialect"
+ assert False, "Unknown dialect"
return extras
@classmethod
diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py
index 516730159..4fe419865 100644
--- a/test/dialect/test_sqlite.py
+++ b/test/dialect/test_sqlite.py
@@ -1892,7 +1892,7 @@ class ConstraintReflectionTest(fixtures.TestBase):
"REFERENCES implicit_referred_comp)"
)
- # worst case - FK that refers to nonexistent table so we cant
+ # worst case - FK that refers to nonexistent table so we can't
# get pks. requires FK pragma is turned off
conn.exec_driver_sql(
"CREATE TABLE implicit_referrer_comp_fake "