Skip to content

Commit 92cad9a

Browse files
committed
Cleanup.
1 parent 357192c commit 92cad9a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Components/test/E2ETest/Infrastructure/ServerTestBase.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
55
using Microsoft.AspNetCore.E2ETesting;
66
using OpenQA.Selenium;
7-
using OpenQA.Selenium.Support.UI;
87
using Xunit.Abstractions;
98

109
namespace Microsoft.AspNetCore.Components.E2ETest.Infrastructure;

src/Components/test/E2ETest/ServerRenderingTests/EnhancedNavigationTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ public void EnhancedNavigationScrollBehavesSameAsBrowserOnNavigation(bool enable
691691
// or to the beginning of a fragment, regardless of the previous scroll position
692692
string landingPageSuffix = enableStreaming ? "" : "-no-streaming";
693693
string buttonKeyword = programmaticNavigation ? "-programmatic" : "";
694-
EnhancedNavigationTestUtil.SuppressEnhancedNavigation(this, shouldSuppress: !useEnhancedNavigation, skipNavigation: true);
694+
EnhancedNavigationTestUtil.SuppressEnhancedNavigation(this, shouldSuppress: !useEnhancedNavigation);
695695
Navigate($"{ServerPathBase}/nav/scroll-test{landingPageSuffix}");
696696

697697
// "landing" page: scroll maximally down and go to "next" page - we should land at the top of that page
@@ -744,7 +744,7 @@ public void EnhancedNavigationScrollBehavesSameAsBrowserOnBackwardsForwardsActio
744744
// This test checks if the scroll position is preserved after backwards/forwards action
745745
string landingPageSuffix = enableStreaming ? "" : "-no-streaming";
746746
string buttonKeyword = programmaticNavigation ? "-programmatic" : "";
747-
EnhancedNavigationTestUtil.SuppressEnhancedNavigation(this, shouldSuppress: !useEnhancedNavigation, skipNavigation: true);
747+
EnhancedNavigationTestUtil.SuppressEnhancedNavigation(this, shouldSuppress: !useEnhancedNavigation);
748748
Navigate($"{ServerPathBase}/nav/scroll-test{landingPageSuffix}");
749749

750750
// "landing" page: scroll to pos1, navigate away

src/Shared/E2ETesting/BrowserTestBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public Task DisposeAsync()
5353
{
5454
return Task.CompletedTask;
5555
}
56+
5657
public virtual Task InitializeAsync()
5758
{
5859
return InitializeAsync("");

0 commit comments

Comments
 (0)