diff options
| author | Michael Merickel <michael@merickel.org> | 2019-12-15 20:18:16 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-15 20:18:16 -0600 |
| commit | c6340737a4826d4073f0cfa7951dccf42d0cbfcf (patch) | |
| tree | e5605243e0b52f6444c9f97771ddc89e96c9572b /tests/test_config | |
| parent | 948b692469cdcaeb38f37982f0810954c545b920 (diff) | |
| parent | f6cb1efa8fba683bdc5c9b4a645f9357fe2e6208 (diff) | |
| download | pyramid-c6340737a4826d4073f0cfa7951dccf42d0cbfcf.tar.gz pyramid-c6340737a4826d4073f0cfa7951dccf42d0cbfcf.tar.bz2 pyramid-c6340737a4826d4073f0cfa7951dccf42d0cbfcf.zip | |
Merge pull request #3537 from mmerickel/negotiate-static-encoding
negotiate the best static asset using supported encodings
Diffstat (limited to 'tests/test_config')
| -rw-r--r-- | tests/test_config/test_views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_config/test_views.py b/tests/test_config/test_views.py index a1e975756..baa87dd6b 100644 --- a/tests/test_config/test_views.py +++ b/tests/test_config/test_views.py @@ -4174,7 +4174,9 @@ class DummyRegistry: utility = None def __init__(self): - self.settings = {} + self.settings = { + 'pyramid.reload_assets': False, + } def queryUtility(self, type_or_iface, name=None, default=None): return self.utility or default |
