Fix CA1515

This commit is contained in:
RoosterDragon
2025-11-11 18:42:12 +00:00
committed by Gustas Kažukauskas
parent 24c19f64c9
commit 42ac32dace
13 changed files with 19 additions and 14 deletions

View File

@@ -15,7 +15,7 @@ using OpenRA.Widgets;
namespace OpenRA.Test
{
[TestFixture]
public class MediatorTest
sealed class MediatorTest
{
[TestCase(TestName = "Mediator test")]
public void Test()
@@ -30,7 +30,7 @@ namespace OpenRA.Test
}
}
public class TestHandler : INotificationHandler<TestNotificaton>
sealed class TestHandler : INotificationHandler<TestNotificaton>
{
public bool WasNotified { get; set; }
@@ -40,5 +40,5 @@ namespace OpenRA.Test
}
}
public class TestNotificaton { }
sealed class TestNotificaton { }
}