diff options
| -rw-r--r-- | pyramid/tests/includeapp1/three.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyramid/tests/includeapp1/three.py b/pyramid/tests/includeapp1/three.py index a921bcd10..de7268bb6 100644 --- a/pyramid/tests/includeapp1/three.py +++ b/pyramid/tests/includeapp1/three.py @@ -5,5 +5,6 @@ def aview(request): def configure(config): config.add_view(aview, name='three') + config.include('pyramid.tests.includeapp1.two.configure') # should not cycle config.add_view(aview) # will be overridden by root when resolved |
