Skip to content

Commit

Permalink
notice warnings introduced (#125)
Browse files Browse the repository at this point in the history
* notice warnings introduced

* minimumSeverity: 'warning'
  • Loading branch information
jinek authored Oct 30, 2024
1 parent 9264d99 commit 36f462a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/editorconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions src/Tests/Consolonia.GalleryTests/CalendarTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 36f462a

Please sign in to comment.