diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-02-25 19:37:50 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-02-25 19:37:50 +0000 |
commit | 0f89e4681faea53ad69bf0f9050cd905803163ab (patch) | |
tree | 6b357aa2cf6265a34069d290b3ff7834726d4cc3 /test/functional | |
parent | ce21f8fe16a45a5a409d3c9f8217eba2de1fbe14 (diff) | |
download | rspamd-0f89e4681faea53ad69bf0f9050cd905803163ab.tar.gz rspamd-0f89e4681faea53ad69bf0f9050cd905803163ab.zip |
[Test] Fix phishing tests
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/configs/phishing.conf | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/functional/configs/phishing.conf b/test/functional/configs/phishing.conf index 3ea53a0d1..2b029f687 100644 --- a/test/functional/configs/phishing.conf +++ b/test/functional/configs/phishing.conf @@ -1,7 +1,11 @@ phishing { symbol = "PHISHING"; - strict_domains = [ - "${TESTDIR}/configs/maps/strict.phishing:STRICT_PHISHING", - "${TESTDIR}/configs/maps/stricter.phishing:STRICTER_PHISHING" - ]; + strict_domains = { + STRICT_PHISHING = [ + "${TESTDIR}/configs/maps/strict.phishing", + ]; + STRICTER_PHISHING = [ + "${TESTDIR}/configs/maps/stricter.phishing" + ] + } } |