You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/GitVersionCore.Tests/IntegrationTests/BranchWithoutCommitScenarios.cs
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
usingNUnit.Framework;
4
4
usingGitVersionCore.Tests.Helpers;
5
5
usingLibGit2Sharp;
6
-
usingNUnit.Framework;
7
6
8
7
namespaceGitVersionCore.Tests.IntegrationTests
9
8
{
@@ -61,7 +60,7 @@ public void BetaBranchCreatedButStillOnTaggedAlphaCommitShouldCreateBetaVersion(
61
60
fixture.Checkout("release/1.1.0");// still on the same commit, but another branch, choosing to build same code as beta now
62
61
63
62
// Assert
64
-
fixture.AssertFullSemver("1.1.0-beta.1",config);//will be 1.1.0-alpha.1, should be 1.1.0-beta.1. Tag is an "alpha" tag from develop branch, only "beta" tags should count when on release branch. If no beta tag found, build new beta version on release branch.
63
+
fixture.AssertFullSemver("1.1.0-beta.1",config);//Tag is an "alpha" tag from develop branch, only "beta" tags should count when on release branch. If no beta tag found, build new beta version on release branch.
65
64
66
65
fixture.Checkout("develop");// back to develop
67
66
fixture.AssertFullSemver("1.1.0-alpha.1",config);//will be 1.1.0-alpha.1 based on tag (as before)
0 commit comments