Skip to content

Commit 89bebe1

Browse files
Update test_http_routes.py
Signed-off-by: Doyoung Kim <[email protected]>
1 parent 01474ff commit 89bebe1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/ray/serve/tests/test_http_routes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ def subpath(self, p: str):
171171
return p
172172

173173
serve.run(D4.bind(), route_prefix="/hello/world/again", name="app4")
174-
check_req("/hello/", "app4", text="1")
175-
check_req("/", "app4", text="2")
176-
check_req("/hello/world/", "app4", text="3")
174+
check_req("/hello/", "app1", text="1")
175+
check_req("/", "app2", text="2")
176+
check_req("/hello/world/", "app3", text="3")
177177
check_req("/hello/world/again/", "app4", text="4")
178178
check_req("/hello/world/again/hi", "app4", text="hi")
179179

0 commit comments

Comments
 (0)