Skip to content

Commit e900398

Browse files
committed
should actually verify test output
1 parent e72520f commit e900398

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Tests/VersionAndBranchFinderTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Diagnostics;
2-
using GitVersion;
1+
using GitVersion;
32
using GitVersionTask;
43
using LibGit2Sharp;
54
using NUnit.Framework;
@@ -21,6 +20,6 @@ public void ShouldBeAbleGetVersionFromGitDir()
2120
}
2221
SemanticVersion versionAndBranch;
2322
VersionAndBranchFinder.TryGetVersion(ASBMTestRepoWorkingDirPath, out versionAndBranch);
24-
Debug.Write(versionAndBranch);
23+
Assert.IsNotNull(versionAndBranch);
2524
}
2625
}

0 commit comments

Comments
 (0)