소스 검색

try fix CI test

Adrian Wannenmacher 2 년 전
부모
커밋
83d428b853
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/router/tests/web_router.rs

+ 1 - 1
packages/router/tests/web_router.rs

@@ -29,7 +29,7 @@ fn simple_test() {
                 Segment::content(comp(Home)).fixed(
                     "blog",
                     Route::empty().nested(
-                        Segment::content(comp(BlogList)).catch_all((comp(BlogPost, PostId {}))),
+                        Segment::content(comp(BlogList)).catch_all((comp(BlogPost), PostId {})),
                     ),
                 )
             },