summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-21 13:36:07 -0500
committerChris McDonough <chrism@plope.com>2010-11-21 13:36:07 -0500
commitb44b9302f7a89de5444177137a3c915756d1ce0b (patch)
tree90ee87129f4d1468e7a924aa3f56bf12145ddd6b
parent2197ff06b492b7d1acf29df426c0fccd6d5dc98e (diff)
downloadpyramid-b44b9302f7a89de5444177137a3c915756d1ce0b.tar.gz
pyramid-b44b9302f7a89de5444177137a3c915756d1ce0b.tar.bz2
pyramid-b44b9302f7a89de5444177137a3c915756d1ce0b.zip
- The ``pyramid_routesalchemy`` paster template's unit tests failed
(``AssertionError: 'SomeProject' != 'someproject'``). This is fixed.
-rw-r--r--CHANGES.txt6
-rw-r--r--pyramid/paster_templates/routesalchemy/+package+/tests.py_tmpl2
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}}')