diff --git a/.github/workflows/editorconfig.yml b/.github/workflows/editorconfig.yml index c1283a51..c258de2d 100644 --- a/.github/workflows/editorconfig.yml +++ b/.github/workflows/editorconfig.yml @@ -39,6 +39,7 @@ jobs: solutionPath: ./src/Consolonia.sln exclude: "**Consolonia.GuiCS/**.*;**Consolonia.Gallery/**.*;**Example/**.*" version: '2024.2.6' + minimumSeverity: 'warning' - name: install-resharper run: | diff --git a/src/Tests/Consolonia.GalleryTests/CalendarTests.cs b/src/Tests/Consolonia.GalleryTests/CalendarTests.cs index 9b3f64be..329b7682 100644 --- a/src/Tests/Consolonia.GalleryTests/CalendarTests.cs +++ b/src/Tests/Consolonia.GalleryTests/CalendarTests.cs @@ -13,9 +13,9 @@ internal class CalendarTests : GalleryTestsBaseBase protected override async Task PerformSingleTest() { await UITest.AssertHasText("24 25 26 27 28 29 30"); - await UITest.AssertHasText("April", "2022"); + await UITest.AssertHasText(@"April", @"2022"); await UITest.KeyInput(Key.Tab, Key.Back); - await UITest.AssertHasText("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", + await UITest.AssertHasText(@"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); await UITest.KeyInput(Key.Back); await UITest.AssertHasText(Enumerable.Range(2019, 12).Select(year => year.ToString()).ToArray());