summaryrefslogtreecommitdiff
path: root/tests/test_config
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-10-02 10:00:43 -0500
committerGitHub <noreply@github.com>2019-10-02 10:00:43 -0500
commitbe62391821676393b7ad5ab51655892e991c2ae0 (patch)
tree0225eee416abdeecefb360bc940f39a8ab5cf910 /tests/test_config
parent00ac1f913ee7068babcf1fd482eb91dbd04d5ec2 (diff)
parent2bf1b2f11cf65ae39a1e0e8bc51937443bcaa033 (diff)
downloadpyramid-be62391821676393b7ad5ab51655892e991c2ae0.tar.gz
pyramid-be62391821676393b7ad5ab51655892e991c2ae0.tar.bz2
pyramid-be62391821676393b7ad5ab51655892e991c2ae0.zip
Merge pull request #3510 from mmerickel/scan-categories
modify the default scan categories to be limited to only 'pyramid'
Diffstat (limited to 'tests/test_config')
-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 661654ef0..5ca33178a 100644
--- a/tests/test_config/test_init.py
+++ b/tests/test_config/test_init.py
@@ -1113,7 +1113,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):