File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class Build : NukeBuild
44
44
45
45
[ OctoVersion ( BranchMember = nameof ( BranchName ) ,
46
46
AutoDetectBranchMember = nameof ( AutoDetectBranch ) , Framework = "net8.0" ) ]
47
- public OctoVersionInfo OctoVersionInfo ;
47
+ public OctoVersionInfo OctoVersionInfo ;
48
48
49
49
AbsolutePath SourceDirectory => RootDirectory / "source" ;
50
50
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts" ;
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . IO ;
3
3
using System . Threading . Tasks ;
4
- using Shouldly ;
5
4
using NSubstitute ;
6
5
using NUnit . Framework ;
7
6
using Octopus . CommandLine ;
8
7
using Octopus . CommandLine . Commands ;
9
8
using Serilog ;
9
+ using Shouldly ;
10
10
11
11
namespace Tests . Commands ;
12
12
@@ -90,7 +90,7 @@ public async Task ShouldReturnAllSubCommandsWhenEmptyArguments()
90
90
. ShouldSatisfyAllConditions (
91
91
actual => actual . ShouldContain ( "help" ) ,
92
92
actual => actual . ShouldContain ( "test" )
93
- ) ;
93
+ ) ;
94
94
}
95
95
96
96
[ Test ]
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . IO ;
3
- using Shouldly ;
4
3
using NSubstitute ;
5
4
using NUnit . Framework ;
6
5
using Octopus . CommandLine ;
7
6
using Octopus . CommandLine . Commands ;
8
7
using Serilog ;
8
+ using Shouldly ;
9
9
using Tests . Helpers ;
10
10
11
11
namespace Tests . Commands ;
@@ -49,7 +49,7 @@ public void ShouldPrintGeneralHelpWhenNoArgsGiven()
49
49
actual => actual . ShouldMatch ( @"Usage: (dotnet|testhost.*|ReSharperTestRunner64) <command> \[<options>\]" ) ,
50
50
actual => actual . ShouldContain ( "Where <command> is one of:" ) ,
51
51
actual => actual . ShouldContain ( "create-foo" )
52
- ) ;
52
+ ) ;
53
53
}
54
54
55
55
[ Test ]
You can’t perform that action at this time.
0 commit comments