We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bdde08 commit 0c24c09Copy full SHA for 0c24c09
src/Directory.Build.props
@@ -1,7 +1,7 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project>
3
<PropertyGroup>
4
- <Version>28.14.0-beta.6</Version>
+ <Version>28.14.0-beta.7</Version>
5
<NoWarn>CA1822;CS1591;CS0649;xUnit1026;xUnit1013;CS1573;VerifyTestsProjectDir;VerifySetParameters;PolyFillTargetsForNuget;xUnit1051</NoWarn>
6
<ImplicitUsings>enable</ImplicitUsings>
7
<LangVersion>preview</LangVersion>
src/Verify.NUnit/DanglingSnapshots.cs
@@ -2,12 +2,6 @@
public static class DanglingSnapshots
{
- public static void Run()
- {
- var state = TestExecutionContext.CurrentContext.CurrentResult.ResultState;
8
- if (state == ResultState.Success)
9
10
- DanglingSnapshotsCheck.Run();
11
- }
12
+ public static void Run() =>
+ DanglingSnapshotsCheck.Run();
13
}
0 commit comments