summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2015-04-15 15:02:16 -0400
committerCasey Duncan <casey.duncan@gmail.com>2015-04-15 15:02:16 -0400
commitc17d753b118cd001b67d3ed1b0f992a6758d200f (patch)
treeddef0080807b1ce58933b60b41872424c45ef123
parent611aa33342653d5ead73473703f4aad8680ed0df (diff)
parentfd3bd228bab840aa417c4968a94f50e0ff5d77d6 (diff)
downloadpyramid-c17d753b118cd001b67d3ed1b0f992a6758d200f.tar.gz
pyramid-c17d753b118cd001b67d3ed1b0f992a6758d200f.tar.bz2
pyramid-c17d753b118cd001b67d3ed1b0f992a6758d200f.zip
Merge branch 'configurable-view-deriver' of github.com:caseman/pyramid into configurable-view-deriver
-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 bda85b00a..51c7174f0 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.'
)