diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/orm/test_expire.py | 4 | ||||
-rw-r--r-- | test/orm/test_unitofworkv2.py | 2 | ||||
-rw-r--r-- | test/sql/test_compiler.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/test/orm/test_expire.py b/test/orm/test_expire.py index 63341abec..158957ebb 100644 --- a/test/orm/test_expire.py +++ b/test/orm/test_expire.py @@ -558,7 +558,7 @@ class ExpireTest(_fixtures.FixtureTest): # fires off to load "addresses", but needs foreign key or primary key # attributes in order to lazy load; hits those attributes, such as # below it hits "u.id". "u.id" triggers full unexpire operation, - # joinedloads addresses since lazy='joined'. this is all wihtin lazy load + # joinedloads addresses since lazy='joined'. this is all within lazy load # which fires unconditionally; so an unnecessary joinedload (or # lazyload) was issued. would prefer not to complicate lazyloading to # "figure out" that the operation should be aborted right now. @@ -1228,7 +1228,7 @@ class LifecycleTest(fixtures.MappedTest): # we didn't insert a value for 'data', # so its not in dict, but also when we hit it, it isn't - # expired because there's no column default on it or anyhting like that + # expired because there's no column default on it or anything like that assert 'data' not in d1.__dict__ def go(): eq_(d1.data, None) diff --git a/test/orm/test_unitofworkv2.py b/test/orm/test_unitofworkv2.py index bfc050e35..ae8454f6f 100644 --- a/test/orm/test_unitofworkv2.py +++ b/test/orm/test_unitofworkv2.py @@ -1395,7 +1395,7 @@ class RowswitchM2OTest(fixtures.MappedTest): def test_set_none_replaces_scalar(self): # this case worked before #3060, because a straight scalar - # set of None shows up. Howver, as test_set_none_w_get + # set of None shows up. However, as test_set_none_w_get # shows, we can't rely on this - the get of None will blow # away the history. A, B, C = self._fixture() diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index 27cab65ac..a0db9864e 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -2147,7 +2147,7 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL): 'CAST(%s AS %s)' % (literal, expected_results[4])) # fixme: shoving all of this dialect-specific stuff in one test - # is now officialy completely ridiculous AND non-obviously omits + # is now officially completely ridiculous AND non-obviously omits # coverage on other dialects. sel = select([tbl, cast(tbl.c.v1, Numeric)]).compile( dialect=dialect) |