diff options
| -rw-r--r-- | CHANGES.txt | 6 | ||||
| -rw-r--r-- | pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 33e87a7c8..36b610e10 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ Next release ============ +Bug Fixes +--------- + +- The ``pyramid_routesalchemy`` paster template's unit tests failed + (``AssertionError: 'SomeProject' != 'someproject'``). This is fixed. + Documentation ------------- diff --git a/pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl b/pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl index de75e5df0..142341333 100644 --- a/pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl +++ b/pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl @@ -21,4 +21,4 @@ class TestMyView(unittest.TestCase): request = testing.DummyRequest() info = my_view(request) self.assertEqual(info['root'].name, 'root') - self.assertEqual(info['project'], '{{package}}') + self.assertEqual(info['project'], '{{project}}') |
