aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/urltest.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/urltest.lua b/test/urltest.lua
index 04b3c7f..b6ee299 100644
--- a/test/urltest.lua
+++ b/test/urltest.lua
@@ -690,7 +690,7 @@ check_absolute_url("http://example.com/", "...badhost.com/", "http://example.com
690check_absolute_url("http://example.com/a/b/c/d/", "../q", "http://example.com/a/b/c/q") 690check_absolute_url("http://example.com/a/b/c/d/", "../q", "http://example.com/a/b/c/q")
691check_absolute_url("http://example.com/a/b/c/d/", "../../q", "http://example.com/a/b/q") 691check_absolute_url("http://example.com/a/b/c/d/", "../../q", "http://example.com/a/b/q")
692check_absolute_url("http://example.com/a/b/c/d/", "../../../q", "http://example.com/a/q") 692check_absolute_url("http://example.com/a/b/c/d/", "../../../q", "http://example.com/a/q")
693check_absolute_url("http://example.com/a/b/c/d/", "../../../../q", "http://example.com/q") 693check_absolute_url("http://example.com", ".badhost.com", "http://example.com/.badhost.com")
694 694
695print("testing path parsing and composition") 695print("testing path parsing and composition")
696check_parse_path("/eu/tu/ele", { "eu", "tu", "ele"; is_absolute = 1 }) 696check_parse_path("/eu/tu/ele", { "eu", "tu", "ele"; is_absolute = 1 })