Skip to content

Commit 7e10dd4

Browse files
committed
fix test
1 parent ff65483 commit 7e10dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ async def test_relative_links(display: DisplayFixture):
197197
def sample():
198198
return browser_router(
199199
route("/", link({"to": "a", "id": "root"}, "Root")),
200-
route("/a", link({"to": "a/a/../b", "id": "a"}, "A")),
200+
route("/a", link({"to": "/a/a/../b", "id": "a"}, "A")),
201201
route("/a/b", link({"to": "../a/b/c", "id": "b"}, "B")),
202202
route("/a/b/c", link({"to": "../d", "id": "c"}, "C")),
203203
route("/a/d", link({"to": "e", "id": "d"}, "D")),

0 commit comments

Comments
 (0)