summaryrefslogtreecommitdiff
path: root/tests/test_config/test_init.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-09-18 20:03:06 -0500
committerMichael Merickel <michael@merickel.org>2019-09-18 20:06:32 -0500
commit2bf1b2f11cf65ae39a1e0e8bc51937443bcaa033 (patch)
tree78a598a38239b521c27b738813f637e63cf3a14b /tests/test_config/test_init.py
parent3af1883bcd617d74eb8c9b134b5ac830f8cdd2a9 (diff)
downloadpyramid-2bf1b2f11cf65ae39a1e0e8bc51937443bcaa033.tar.gz
pyramid-2bf1b2f11cf65ae39a1e0e8bc51937443bcaa033.tar.bz2
pyramid-2bf1b2f11cf65ae39a1e0e8bc51937443bcaa033.zip
modify the default scan categories to be limited to only 'pyramid'
Diffstat (limited to 'tests/test_config/test_init.py')
-rw-r--r--tests/test_config/test_init.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config/test_init.py b/tests/test_config/test_init.py
index ce2b042ec..6c33abe23 100644
--- a/tests/test_config/test_init.py
+++ b/tests/test_config/test_init.py
@@ -1104,7 +1104,7 @@ test_config.dummy_include2"""
def test_scan_integration_with_extra_kw(self):
config = self._makeOne(autocommit=True)
- config.scan('tests.test_config.pkgs.scanextrakw', a=1)
+ config.scan('tests.test_config.pkgs.scanextrakw', a=1, categories=None)
self.assertEqual(config.a, 1)
def test_scan_integration_with_onerror(self):