Skip to content

Commit

Permalink
Merge pull request Pylons#1003 from tshepang/diff
Browse files Browse the repository at this point in the history
replace deprecated method
  • Loading branch information
mmerickel committed Apr 23, 2013
2 parents 1000245 + 44883ef commit 27910f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/wiki/src/models/tutorial/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_w_app_root(self):
app_root = object()
root = {'app_root': app_root}
self._callFUT(root)
self.failUnless(root['app_root'] is app_root)
self.assertTrue(root['app_root'] is app_root)

class ViewTests(unittest.TestCase):
def setUp(self):
Expand Down

0 comments on commit 27910f1

Please sign in to comment.