mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
504e1284de
looking into this part of the test suite it appears it started as a modified copy of part of the main pyramid test suite. presumably this line simply never got converted - change it to match the similar imports.
12 lines
492 B
Diff
12 lines
492 B
Diff
--- a/pyramid_chameleon/tests/test_renderers.py
|
|
+++ b/pyramid_chameleon/tests/test_renderers.py
|
|
@@ -258,7 +258,7 @@ class TestChameleonRendererLookup(unittest.TestCase):
|
|
self.assertRaises(ValueError, lookup.__call__, info)
|
|
|
|
def test___call__spec_alreadyregistered(self):
|
|
- from pyramid import tests
|
|
+ from pyramid_chameleon import tests
|
|
module_name = tests.__name__
|
|
relpath = 'test_renderers.py'
|
|
spec = '%s:%s' % (module_name, relpath)
|