From b44b9302f7a89de5444177137a3c915756d1ce0b Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 21 Nov 2010 13:36:07 -0500 Subject: - The ``pyramid_routesalchemy`` paster template's unit tests failed (``AssertionError: 'SomeProject' != 'someproject'``). This is fixed. --- CHANGES.txt | 6 ++++++ pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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}}') -- cgit v1.2.3