From fd3bd228bab840aa417c4968a94f50e0ff5d77d6 Mon Sep 17 00:00:00 2001 From: Amos Latteier Date: Wed, 15 Apr 2015 14:59:14 -0400 Subject: Fix package name in tests. --- pyramid/tests/test_config/test_derivations.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyramid/tests/test_config/test_derivations.py b/pyramid/tests/test_config/test_derivations.py index 668a462b1..ff3577e12 100644 --- a/pyramid/tests/test_config/test_derivations.py +++ b/pyramid/tests/test_config/test_derivations.py @@ -39,7 +39,7 @@ class TestDeriveView(unittest.TestCase): self.assertEqual( e.args[0], 'Could not convert return value of the view callable function ' - 'pyramid.tests.test_config.test_views.view into a response ' + 'pyramid.tests.test_config.test_derivations.view into a response ' 'object. The value returned was None. You may have forgotten ' 'to return a value from the view callable.' ) @@ -57,7 +57,7 @@ class TestDeriveView(unittest.TestCase): self.assertEqual( e.args[0], "Could not convert return value of the view callable function " - "pyramid.tests.test_config.test_views.view into a response " + "pyramid.tests.test_config.test_derivations.view into a response " "object. The value returned was {'a': 1}. You may have " "forgotten to define a renderer in the view configuration." ) @@ -121,7 +121,7 @@ class TestDeriveView(unittest.TestCase): e.args[0], 'Could not convert return value of the view callable ' 'method __call__ of ' - 'class pyramid.tests.test_config.test_views.AView into a ' + 'class pyramid.tests.test_config.test_derivations.AView into a ' 'response object. The value returned was None. You may have ' 'forgotten to return a value from the view callable.' ) -- cgit v1.2.3