aboutsummaryrefslogtreecommitdiffstats
path: root/test/lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/lua')
-rw-r--r--test/lua/unit/url.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lua/unit/url.lua b/test/lua/unit/url.lua
index 06082afe0..de274425d 100644
--- a/test/lua/unit/url.lua
+++ b/test/lua/unit/url.lua
@@ -17,8 +17,8 @@ context("URL check functions", function()
test("Extract urls from text", function()
local pool = mpool.create()
local cases = {
- {"test.com text", {"test.com", nil}},
- {" test.com text", {"test.com", nil}},
+ {"test.com", {"test.com", nil}},
+ {" test.com", {"test.com", nil}},
{"<test.com> text", {"test.com", nil}},
{"test.com. text", {"test.com", nil}},
{"mailto:A.User@example.com text", {"example.com", "A.User"}},