summaryrefslogtreecommitdiff
path: root/test/sql/test_selectable.py
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-07-21 10:51:29 +1000
committerMin ho Kim <minho42@gmail.com>2019-07-21 10:51:29 +1000
commit7e588aadaab27a53b226a4637be9b4022ab46956 (patch)
tree9a38b84206b3ada32b2b8e9a53ec68515438a8a9 /test/sql/test_selectable.py
parent463c488d8e52725d1bf48229a9110b850a70418b (diff)
downloadsqlalchemy-7e588aadaab27a53b226a4637be9b4022ab46956.tar.gz
Fix typos
Diffstat (limited to 'test/sql/test_selectable.py')
-rw-r--r--test/sql/test_selectable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py
index 9bcdd0620..dfd35908b 100644
--- a/test/sql/test_selectable.py
+++ b/test/sql/test_selectable.py
@@ -265,7 +265,7 @@ class SelectableTest(
s = select([t, expr])
- # anon_label, e.g. a truncated_label, is used here becuase
+ # anon_label, e.g. a truncated_label, is used here because
# the expr has no name, no key, and myop() can't create a
# string, so this is the last resort
eq_(s.selected_columns.keys(), ["x", "y", expr.anon_label])
@@ -456,7 +456,7 @@ class SelectableTest(
# TODO: this case is crazy, sending SELECT or FROMCLAUSE has to
# be figured out - is it a scalar row query? what kinds of
- # statements go into functions in PG. seems likely select statment,
+ # statements go into functions in PG. seems likely select statement,
# but not alias, subquery or other FROM object
self.assert_compile(
select([func.foo(a)]),