Skip to content

Commit

Permalink
dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz committed Dec 1, 2023
1 parent 43b15e6 commit 34e7158
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public sealed class FactRequiresMvcTestingFix : FactAttribute
{
public FactRequiresMvcTestingFix()
{
if (Environment.Version.Major < 7) return;
if (Environment.Version.Major < 7)
return;
Skip = $"This test is disabled on .NET 7 until https://github.com/dotnet/aspnetcore/issues/45233";
}
}
Expand All @@ -21,7 +22,8 @@ public sealed class TheoryRequiresMvcTestingFix : TheoryAttribute
{
public TheoryRequiresMvcTestingFix()
{
if (Environment.Version.Major < 7) return;
if (Environment.Version.Major < 7)
return;
Skip = $"This test is disabled on .NET 7 until https://github.com/dotnet/aspnetcore/issues/45233";
}
}

0 comments on commit 34e7158

Please sign in to comment.