diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-12-06 13:31:56 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-12-06 13:31:56 +0000 |
commit | 3f57a0d2d90a874eee6cb15242304827cc64844a (patch) | |
tree | 58ef681229d165dcb526fd6cfb1adb50837ae3ba /test | |
parent | 7a9000757ddcefbb3013c2218e5d43d92acc7e38 (diff) | |
download | rspamd-3f57a0d2d90a874eee6cb15242304827cc64844a.tar.gz rspamd-3f57a0d2d90a874eee6cb15242304827cc64844a.zip |
[Test] Remove broken test
Diffstat (limited to 'test')
-rw-r--r-- | test/lua/unit/selectors.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/lua/unit/selectors.lua b/test/lua/unit/selectors.lua index 270d06941..5eff52528 100644 --- a/test/lua/unit/selectors.lua +++ b/test/lua/unit/selectors.lua @@ -201,9 +201,10 @@ context("Selectors test", function() selector = "specific_urls({need_emails = true, limit = 2})", expect = {{"test@example.net", "http://subdomain.example.net"}}}, - ["specific_urls + emails limit"] = { - selector = "specific_urls({need_emails = true, limit = 1})", - expect = {{"test@example.net"}}}, + -- Broken test as order depends on the hash function internally + --["specific_urls + emails limit"] = { + -- selector = "specific_urls({need_emails = true, limit = 1})", + -- expect = {{"test@example.net"}}}, ["pool_var str, default type"] = { selector = [[pool_var("str_var")]], |