Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 5, 2021
1 parent 3d6c818 commit 83877de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions src/DeterministicTests/Tests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using VerifyXunit;
using Xunit;

[UsesVerify]
[UsesVerify]
public class Tests
{
[Fact]
Expand Down
8 changes: 4 additions & 4 deletions src/Verify/Naming/Namer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,13 @@ internal Namer(Namer namer)
static (string runtime, Version Version) GetRuntimeAndVersion()
{
#if NETCOREAPP2_1
return ("Core", new Version(2, 1));
return ("Core", new(2, 1));
#elif NETCOREAPP2_2
return ("Core", new Version(2, 2));
return ("Core", new(2, 2));
#elif NETCOREAPP3_0
return ("Core", new Version(3, 0));
return ("Core", new(3, 0));
#elif NETCOREAPP3_1
return ("Core", new Version(3, 1));
return ("Core", new(3, 1));
#else
var description = RuntimeInformation.FrameworkDescription;

Expand Down

0 comments on commit 83877de

Please sign in to comment.