diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-11-27 23:09:55 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-11-27 23:09:55 +0000 |
commit | df56dd4dc0b286dd8b28ffe05ca5b4722caee89d (patch) | |
tree | de89f059bd5f4bc79112e0b764dc3b02eecb296e /test/functional/util | |
parent | bcb71e68b1491717d41d850e98be36ea346697d0 (diff) | |
download | rspamd-df56dd4dc0b286dd8b28ffe05ca5b4722caee89d.tar.gz rspamd-df56dd4dc0b286dd8b28ffe05ca5b4722caee89d.zip |
[Test] Add test case for settings in the external map
Diffstat (limited to 'test/functional/util')
-rwxr-xr-x | test/functional/util/dummy_http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/util/dummy_http.py b/test/functional/util/dummy_http.py index 92b538845..8de1b027b 100755 --- a/test/functional/util/dummy_http.py +++ b/test/functional/util/dummy_http.py @@ -88,7 +88,7 @@ class MyHandler(http.server.BaseHTTPRequestHandler): if self.path == "/map-simple": response = b"hello map" if self.path == "/settings": - response = b"{\"actions\": { \"reject\": 1.0}}" + response = b"{\"actions\": { \"reject\": 1.0}, \"symbols\": { \"EXTERNAL_SETTINGS\": 1.0 }}" content_type = "application/json" self.send_header("Content-Length", str(len(response))) |