diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2016-08-08 16:39:15 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2016-08-08 16:39:15 +0300 |
commit | fd164a6c849289b81f29059dda822c3d5902e40e (patch) | |
tree | 3c4a3af786c47c960b73c62c8c4c2373c6048a60 /test/orm/test_expire.py | |
parent | f2fa9d000b44a54b0fd3ae6114eb5d53ef20c3b8 (diff) | |
download | sqlalchemy-pr/299.tar.gz |
Spelling fixespr/299
Diffstat (limited to 'test/orm/test_expire.py')
-rw-r--r-- | test/orm/test_expire.py | 4 |
1 files changed, 2 insertions, 2 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) |