Skip to content

Commit a924347

Browse files
authored
Fix broken tests from conflicting PRs (#9004)
1 parent 3738d58 commit a924347

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/react-router-dom/__tests__/trailing-slashes-test.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ describe("trailing slashes", () => {
126126
index
127127
element={
128128
<>
129-
<Link to="../../.." />
130-
<Link to="../../../" />
131-
<Link to="../../child" />
132-
<Link to="../../child/" />
129+
<Link to="../.." />
130+
<Link to="../../" />
131+
<Link to="../../parent/child" />
132+
<Link to="../../parent/child/" />
133133
</>
134134
}
135135
/>
@@ -277,10 +277,10 @@ describe("trailing slashes", () => {
277277
index
278278
element={
279279
<>
280-
<Link to="../../.." />
281-
<Link to="../../../" />
282-
<Link to="../../child" />
283-
<Link to="../../child/" />
280+
<Link to="../.." />
281+
<Link to="../../" />
282+
<Link to="../../parent/child" />
283+
<Link to="../../parent/child/" />
284284
</>
285285
}
286286
/>

0 commit comments

Comments
 (0)