summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmos Latteier <amos@latteier.com>2015-04-15 14:59:14 -0400
committerAmos Latteier <amos@latteier.com>2015-04-15 14:59:14 -0400
commitfd3bd228bab840aa417c4968a94f50e0ff5d77d6 (patch)
tree51b681aa32984f71b1538ae08cc50b6249c37a71
parent46497335df6e87ce681f3e05b82ca5ff32d57f32 (diff)
downloadpyramid-fd3bd228bab840aa417c4968a94f50e0ff5d77d6.tar.gz
pyramid-fd3bd228bab840aa417c4968a94f50e0ff5d77d6.tar.bz2
pyramid-fd3bd228bab840aa417c4968a94f50e0ff5d77d6.zip
Fix package name in tests.
-rw-r--r--pyramid/tests/test_config/test_derivations.py6
1 files 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.'
)