Skip to content

Commit 8ded549

Browse files
Make error notification test file names/layout consistent with others
1 parent 293d547 commit 8ded549

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/Components/test/E2ETest/Tests/ErrorNotificationServerSideTest.cs renamed to src/Components/test/E2ETest/ServerExecutionTests/ServerErrorNotificationTest.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@
55
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
66
using Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests;
77
using Microsoft.AspNetCore.E2ETesting;
8-
using OpenQA.Selenium;
98
using Xunit;
109
using Xunit.Abstractions;
1110

1211
namespace Microsoft.AspNetCore.Components.E2ETest.Tests
1312
{
1413
[Collection("ErrorNotification")] // When the clientside and serverside tests run together it seems to cause failures, possibly due to connection lose on exception.
15-
public class ErrorNotificationServerSideTest : ErrorNotificationClientSideTest
14+
public class ServerErrorNotificationTest : ErrorNotificationTest
1615
{
17-
public ErrorNotificationServerSideTest(
16+
public ServerErrorNotificationTest(
1817
BrowserFixture browserFixture,
1918
ToggleExecutionModeServerFixture<Program> serverFixture,
2019
ITestOutputHelper output)

src/Components/test/E2ETest/Tests/ErrorNotificationClientSideTest.cs renamed to src/Components/test/E2ETest/Tests/ErrorNotificationTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
namespace Microsoft.AspNetCore.Components.E2ETest.Tests
1414
{
1515
[Collection("ErrorNotification")] // When the clientside and serverside tests run together it seems to cause failures, possibly due to connection lose on exception.
16-
public class ErrorNotificationClientSideTest : ServerTestBase<ToggleExecutionModeServerFixture<Program>>
16+
public class ErrorNotificationTest : ServerTestBase<ToggleExecutionModeServerFixture<Program>>
1717
{
18-
public ErrorNotificationClientSideTest(
18+
public ErrorNotificationTest(
1919
BrowserFixture browserFixture,
2020
ToggleExecutionModeServerFixture<Program> serverFixture,
2121
ITestOutputHelper output)

0 commit comments

Comments
 (0)