diff options
| author | Michael Trier <mtrier@gmail.com> | 2008-11-09 01:53:08 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2008-11-09 01:53:08 +0000 |
| commit | 4cd99f5536077718b0f80670508d7310f47b4a25 (patch) | |
| tree | a380a685b3fd73a2a4ff5806c3ead31bec9b9f87 /test/sql | |
| parent | a8c308f34974befb02351d1788298c9b24f8265c (diff) | |
| download | sqlalchemy-4cd99f5536077718b0f80670508d7310f47b4a25.tar.gz | |
Global propigate -> propagate change to correct spelling. Additionally found a couple of insures that should be ensure.
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/query.py | 2 | ||||
| -rw-r--r-- | test/sql/testtypes.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/query.py b/test/sql/query.py index ac11b4452..011ced602 100644 --- a/test/sql/query.py +++ b/test/sql/query.py @@ -339,7 +339,7 @@ class QueryTest(TestBase): @testing.exclude('mysql', '<', (5, 0, 37), 'database bug') def test_scalar_select(self): - """test that scalar subqueries with labels get their type propigated to the result set.""" + """test that scalar subqueries with labels get their type propagated to the result set.""" # mysql and/or mysqldb has a bug here, type isn't propagated for scalar # subquery. datetable = Table('datetable', metadata, diff --git a/test/sql/testtypes.py b/test/sql/testtypes.py index eb0321956..457deb44e 100644 --- a/test/sql/testtypes.py +++ b/test/sql/testtypes.py @@ -34,7 +34,7 @@ class AdaptTest(TestBase): def testmsnvarchar(self): dialect = mssql.MSSQLDialect() - # run the test twice to insure the caching step works too + # run the test twice to ensure the caching step works too for x in range(0, 1): col = Column('', Unicode(length=10)) dialect_type = col.type.dialect_impl(dialect) |
