summaryrefslogtreecommitdiffstats
path: root/test/paths.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/paths.c')
-rw-r--r--test/paths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/paths.c b/test/paths.c
index 5ec2eb8859..434a7996ad 100644
--- a/test/paths.c
+++ b/test/paths.c
@@ -36,7 +36,7 @@ static void run(struct test_ctx *ctx)
TEST_JOIN("c:\\a", "c:\\b", "c:\\b");
TEST_JOIN("c:/a", "c:/b", "c:/b");
// Note: drive-relative paths are not always supported "properly"
- TEST_JOIN("c:/a", "d:b", "d:b");
+ TEST_JOIN("c:/a", "d:b", "c:/a/d:b");
TEST_JOIN("c:a", "b", "c:a/b");
TEST_JOIN("c:", "b", "c:b");
#endif