File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/GitVersionCore.Tests/IntegrationTests Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ public void WhenDevelopBranchedFromMasterDetachedHeadMinorIsIncreased()
143
143
var commit = fixture . Repository . Head . Tip ;
144
144
fixture . Repository . MakeACommit ( ) ;
145
145
Commands . Checkout ( fixture . Repository , commit ) ;
146
- fixture . AssertFullSemver ( "1.1.0-alpha.1" ) ;
146
+ fixture . AssertFullSemver ( "1.1.0-alpha.1" , isForTrackedBranchOnly : false ) ;
147
147
}
148
148
149
149
[ Test ]
Original file line number Diff line number Diff line change 1
- using GitTools . Testing ;
1
+ using GitTools . Testing ;
2
2
using LibGit2Sharp ;
3
3
using NUnit . Framework ;
4
4
using GitVersion . Configuration ;
@@ -93,7 +93,7 @@ public void GivenARepositoryWithCommitsButNoTagsWithDetachedHeadVersionShouldBe0
93
93
Commands . Checkout ( fixture . Repository , commit ) ;
94
94
95
95
// When
96
- fixture . AssertFullSemver ( "0.1.0+2" ) ;
96
+ fixture . AssertFullSemver ( "0.1.0+2" , isForTrackedBranchOnly : false ) ;
97
97
}
98
98
99
99
[ Test ]
@@ -207,4 +207,4 @@ public void AreTagsNotAdheringToTagPrefixIgnored()
207
207
fixture . AssertFullSemver ( config , "0.1.0+6" ) ; //Fallback version + 6 commits since tag
208
208
}
209
209
}
210
- }
210
+ }
You can’t perform that action at this time.
0 commit comments