aboutsummaryrefslogtreecommitdiffstats
path: root/test/lua
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2020-01-15 11:21:56 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2020-01-15 11:21:56 +0000
commit092fa9c14831bc0460bd25190fa013697f572354 (patch)
treeabaff464b106edbc5c694f0e389f241a38bc06c7 /test/lua
parent5d6f92884a1264d4080b00994090508189e2ead8 (diff)
downloadrspamd-092fa9c14831bc0460bd25190fa013697f572354.tar.gz
rspamd-092fa9c14831bc0460bd25190fa013697f572354.zip
[Fix] Fix urls shifting when doing decode to include separators
Diffstat (limited to 'test/lua')
-rw-r--r--test/lua/unit/url.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lua/unit/url.lua b/test/lua/unit/url.lua
index e4baf5b6d..7f337c8b2 100644
--- a/test/lua/unit/url.lua
+++ b/test/lua/unit/url.lua
@@ -57,7 +57,7 @@ context("URL check functions", function()
cases = {
{'http://example.net/?arg=%23#fragment', true, {
- host = 'example.net', fragment = 'fragment'
+ host = 'example.net', fragment = 'fragment', query = 'arg=#',
}},
{"http:/\\[::eeee:192.168.0.1]/#test", true, {
host = '::eeee:c0a8:1', fragment = 'test'