Skip to content

Commit 13f587c

Browse files
committed
Run ReSharper code cleanup
1 parent e7030ce commit 13f587c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/Build.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Build : NukeBuild
4444

4545
[OctoVersion(BranchMember = nameof(BranchName),
4646
AutoDetectBranchMember = nameof(AutoDetectBranch), Framework = "net8.0")]
47-
public OctoVersionInfo OctoVersionInfo;
47+
public OctoVersionInfo OctoVersionInfo;
4848

4949
AbsolutePath SourceDirectory => RootDirectory / "source";
5050
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";

source/Tests/Commands/CompleteCommandFixture.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
using System;
22
using System.IO;
33
using System.Threading.Tasks;
4-
using Shouldly;
54
using NSubstitute;
65
using NUnit.Framework;
76
using Octopus.CommandLine;
87
using Octopus.CommandLine.Commands;
98
using Serilog;
9+
using Shouldly;
1010

1111
namespace Tests.Commands;
1212

@@ -90,7 +90,7 @@ public async Task ShouldReturnAllSubCommandsWhenEmptyArguments()
9090
.ShouldSatisfyAllConditions(
9191
actual => actual.ShouldContain("help"),
9292
actual => actual.ShouldContain("test")
93-
);
93+
);
9494
}
9595

9696
[Test]

source/Tests/Commands/HelpCommandFixture.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System;
22
using System.IO;
3-
using Shouldly;
43
using NSubstitute;
54
using NUnit.Framework;
65
using Octopus.CommandLine;
76
using Octopus.CommandLine.Commands;
87
using Serilog;
8+
using Shouldly;
99
using Tests.Helpers;
1010

1111
namespace Tests.Commands;
@@ -49,7 +49,7 @@ public void ShouldPrintGeneralHelpWhenNoArgsGiven()
4949
actual => actual.ShouldMatch(@"Usage: (dotnet|testhost.*|ReSharperTestRunner64) <command> \[<options>\]"),
5050
actual => actual.ShouldContain("Where <command> is one of:"),
5151
actual => actual.ShouldContain("create-foo")
52-
);
52+
);
5353
}
5454

5555
[Test]

0 commit comments

Comments
 (0)