summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2013-04-23 15:10:01 -0700
committerMichael Merickel <michael@merickel.org>2013-04-23 15:10:01 -0700
commit27910f148267f224f68c3c09b355c45f33740c32 (patch)
tree4eb7c4f162b2ebbe0f403ff0cbf2f020892727f6 /docs
parent100024533b6bf297228ffccf7230fcaad136edb9 (diff)
parent44883effdac471edaf893566f3aac83450d49159 (diff)
downloadpyramid-27910f148267f224f68c3c09b355c45f33740c32.tar.gz
pyramid-27910f148267f224f68c3c09b355c45f33740c32.tar.bz2
pyramid-27910f148267f224f68c3c09b355c45f33740c32.zip
Merge pull request #1003 from tshepang/diff
replace deprecated method
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/wiki/src/models/tutorial/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki/src/models/tutorial/tests.py b/docs/tutorials/wiki/src/models/tutorial/tests.py
index 9fd13a18d..0c5f99575 100644
--- a/docs/tutorials/wiki/src/models/tutorial/tests.py
+++ b/docs/tutorials/wiki/src/models/tutorial/tests.py
@@ -45,7 +45,7 @@ class AppmakerTests(unittest.TestCase):
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):