Skip to content

Commit

Permalink
Resolve xunit warnings (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman authored Oct 12, 2024
1 parent b1a820e commit e4c8c2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Valleysoft.Dredge.Tests/CompareLayersCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ public CommandOptions(bool includeHistory, bool includeCompressedSize, bool isCo

[Theory]
[MemberData(nameof(GetTestData), CompareLayersOutput.Json)]
public async void Json(
public async Task Json(
string scenario, CommandOptions cmdOptions, ImageSetup baseImageSetup, ImageSetup targetImageSetup, CompareLayersResult expectedResult)
{
Text text = (Text)await ExecuteTestAsync(scenario, CompareLayersOutput.Json, cmdOptions, baseImageSetup, targetImageSetup);
Expand All @@ -757,7 +757,7 @@ public async void Json(

[Theory]
[MemberData(nameof(GetTestData), CompareLayersOutput.Inline)]
public async void Inline(
public async Task Inline(
string scenario, CommandOptions cmdOptions, ImageSetup baseImageSetup, ImageSetup targetImageSetup, string expectedResult)
{
Rows rows = (Rows)await ExecuteTestAsync(scenario, CompareLayersOutput.Inline, cmdOptions, baseImageSetup, targetImageSetup);
Expand All @@ -767,7 +767,7 @@ public async void Inline(

[Theory]
[MemberData(nameof(GetTestData), CompareLayersOutput.SideBySide)]
public async void SideBySide(
public async Task SideBySide(
string scenario, CommandOptions cmdOptions, ImageSetup baseImageSetup, ImageSetup targetImageSetup, string[][] expectedRows)
{
Table table = (Table)await ExecuteTestAsync(scenario, CompareLayersOutput.SideBySide, cmdOptions, baseImageSetup, targetImageSetup);
Expand Down

0 comments on commit e4c8c2b

Please sign in to comment.