diff options
| author | Chris McDonough <chrism@plope.com> | 2013-05-09 19:45:28 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-05-09 19:45:28 -0400 |
| commit | dbdfb2fea3851e31e272ebbba4297a138d74e970 (patch) | |
| tree | e4843670bbf5a681b398a5bfb4bd36fd5a1f22f4 /docs/tutorials | |
| parent | 100024533b6bf297228ffccf7230fcaad136edb9 (diff) | |
| parent | a0f84bd416be91b7e861d3b5ba8aa7468ad3c4be (diff) | |
| download | pyramid-dbdfb2fea3851e31e272ebbba4297a138d74e970.tar.gz pyramid-dbdfb2fea3851e31e272ebbba4297a138d74e970.tar.bz2 pyramid-dbdfb2fea3851e31e272ebbba4297a138d74e970.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/tutorials')
| -rw-r--r-- | docs/tutorials/wiki/src/models/tutorial/tests.py | 2 |
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): |
