diff --git a/build/Build.cs b/build/Build.cs index 6559cc6..e8b9661 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -44,7 +44,7 @@ class Build : NukeBuild [OctoVersion(BranchMember = nameof(BranchName), AutoDetectBranchMember = nameof(AutoDetectBranch), Framework = "net8.0")] - public OctoVersionInfo OctoVersionInfo; + public OctoVersionInfo OctoVersionInfo; AbsolutePath SourceDirectory => RootDirectory / "source"; AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts"; diff --git a/source/Tests/Commands/CompleteCommandFixture.cs b/source/Tests/Commands/CompleteCommandFixture.cs index 87346e4..4c97620 100644 --- a/source/Tests/Commands/CompleteCommandFixture.cs +++ b/source/Tests/Commands/CompleteCommandFixture.cs @@ -1,12 +1,12 @@ using System; using System.IO; using System.Threading.Tasks; -using Shouldly; using NSubstitute; using NUnit.Framework; using Octopus.CommandLine; using Octopus.CommandLine.Commands; using Serilog; +using Shouldly; namespace Tests.Commands; @@ -90,7 +90,7 @@ public async Task ShouldReturnAllSubCommandsWhenEmptyArguments() .ShouldSatisfyAllConditions( actual => actual.ShouldContain("help"), actual => actual.ShouldContain("test") - ); + ); } [Test] diff --git a/source/Tests/Commands/HelpCommandFixture.cs b/source/Tests/Commands/HelpCommandFixture.cs index b6f65be..78161fe 100644 --- a/source/Tests/Commands/HelpCommandFixture.cs +++ b/source/Tests/Commands/HelpCommandFixture.cs @@ -1,11 +1,11 @@ using System; using System.IO; -using Shouldly; using NSubstitute; using NUnit.Framework; using Octopus.CommandLine; using Octopus.CommandLine.Commands; using Serilog; +using Shouldly; using Tests.Helpers; namespace Tests.Commands; @@ -49,7 +49,7 @@ public void ShouldPrintGeneralHelpWhenNoArgsGiven() actual => actual.ShouldMatch(@"Usage: (dotnet|testhost.*|ReSharperTestRunner64) \[\]"), actual => actual.ShouldContain("Where is one of:"), actual => actual.ShouldContain("create-foo") - ); + ); } [Test]