Skip to content

Commit bba0a5d

Browse files
committed
cleanup
1 parent 8caa9d2 commit bba0a5d

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/GitVersion.Core.Tests/IntegrationTests/OtherScenarios.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ public void EnsureTrackMergeTargetStrategyWhichWillLookForTaggedMergecommits(boo
136136
{
137137
// * 9daa6ea 53 minutes ago (HEAD -> develop)
138138
// | * 85536f2 55 minutes ago (tag: 1.1.0, main)
139-
// | |\
140-
// | |/
141-
// |/|
139+
// | |\
140+
// | |/
141+
// |/|
142142
// * | 4a5ef1a 56 minutes ago
143-
// |/
143+
// |/
144144
// * c7f68af 58 minutes ago (tag: 1.0.0)
145145

146146
var configuration = GitFlowConfigurationBuilder.New
@@ -1046,7 +1046,7 @@ public void EnsureThePreReleaseTagIsCorrectlyGeneratedWhenPreReleaseLabelIsEmpty
10461046
using var fixture = new EmptyRepositoryFixture("main");
10471047
fixture.Repository.MakeCommits(5);
10481048

1049-
var variables = fixture.GetVersion(configuration);
1049+
var _ = fixture.GetVersion(configuration);
10501050

10511051
fixture.AssertFullSemver("0.0.1-5", configuration);
10521052
}

src/GitVersion.Core/Extensions/StringExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,4 @@ public static bool IsEquivalentTo(this string self, string? other) =>
107107

108108
public static string WithPrefixIfNotNullOrEmpty(this string value, string prefix)
109109
=> string.IsNullOrEmpty(value) ? value : prefix + value;
110-
111110
}

0 commit comments

Comments
 (0)