summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/uri_test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tests/uri_test.c b/src/tests/uri_test.c
index 42c1c43d..a068ab33 100644
--- a/src/tests/uri_test.c
+++ b/src/tests/uri_test.c
@@ -713,9 +713,9 @@ static struct uri_pxe_test uri_pxe_absolute_path = {
{
.scheme = "tftp",
.host = "192.168.0.2",
- .path = "/absolute/path",
+ .path = "//absolute/path",
},
- "tftp://192.168.0.2/absolute/path",
+ "tftp://192.168.0.2//absolute/path",
};
/** PXE URI with relative path */
@@ -731,7 +731,7 @@ static struct uri_pxe_test uri_pxe_relative_path = {
{
.scheme = "tftp",
.host = "192.168.0.3",
- .path = "relative/path",
+ .path = "/relative/path",
},
"tftp://192.168.0.3/relative/path",
};
@@ -749,7 +749,7 @@ static struct uri_pxe_test uri_pxe_icky = {
{
.scheme = "tftp",
.host = "10.0.0.6",
- .path = "C:\\tftpboot\\icky#path",
+ .path = "/C:\\tftpboot\\icky#path",
},
"tftp://10.0.0.6/C%3A\\tftpboot\\icky%23path",
};
@@ -769,9 +769,9 @@ static struct uri_pxe_test uri_pxe_port = {
.scheme = "tftp",
.host = "192.168.0.1",
.port = "4069",
- .path = "/another/path",
+ .path = "//another/path",
},
- "tftp://192.168.0.1:4069/another/path",
+ "tftp://192.168.0.1:4069//another/path",
};
/** Current working URI test */