diff options
| author | Amos Latteier <amos@latteier.com> | 2015-04-15 14:59:14 -0400 |
|---|---|---|
| committer | Amos Latteier <amos@latteier.com> | 2015-04-15 14:59:14 -0400 |
| commit | fd3bd228bab840aa417c4968a94f50e0ff5d77d6 (patch) | |
| tree | 51b681aa32984f71b1538ae08cc50b6249c37a71 | |
| parent | 46497335df6e87ce681f3e05b82ca5ff32d57f32 (diff) | |
| download | pyramid-fd3bd228bab840aa417c4968a94f50e0ff5d77d6.tar.gz pyramid-fd3bd228bab840aa417c4968a94f50e0ff5d77d6.tar.bz2 pyramid-fd3bd228bab840aa417c4968a94f50e0ff5d77d6.zip | |
Fix package name in tests.
| -rw-r--r-- | pyramid/tests/test_config/test_derivations.py | 6 |
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.' ) |
