Skip to content

Commit de2ee78

Browse files
committed
Fix test: the order of links matters.
1 parent 46e9c36 commit de2ee78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/test/E2ETest/Tests/RoutingTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ public void CanFollowLinkToDefaultPageWithHash_NoTrailingSlash()
365365
app.FindElement(By.LinkText("Default with hash, no trailing slash")).Click();
366366
Browser.Equal("This is the default page.", () => app.FindElement(By.Id("test-info")).Text);
367367
AssertHighlightedLinks(
368-
"Default with hash, no trailing slash",
369368
"Default (matches all)",
370369
"Default with base-relative URL (matches all)",
371-
"Default, no trailing slash (matches all)");
370+
"Default, no trailing slash (matches all)",
371+
"Default with hash, no trailing slash");
372372
}
373373

374374
[Fact]

0 commit comments

Comments
 (0)