summaryrefslogtreecommitdiffstats
path: root/test/functional/util
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rspamd.com>2022-11-27 23:09:55 +0000
committerVsevolod Stakhov <vsevolod@rspamd.com>2022-11-27 23:09:55 +0000
commitdf56dd4dc0b286dd8b28ffe05ca5b4722caee89d (patch)
treede89f059bd5f4bc79112e0b764dc3b02eecb296e /test/functional/util
parentbcb71e68b1491717d41d850e98be36ea346697d0 (diff)
downloadrspamd-df56dd4dc0b286dd8b28ffe05ca5b4722caee89d.tar.gz
rspamd-df56dd4dc0b286dd8b28ffe05ca5b4722caee89d.zip
[Test] Add test case for settings in the external map
Diffstat (limited to 'test/functional/util')
-rwxr-xr-xtest/functional/util/dummy_http.py2
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)))