Commit ff4e82fb authored by Kirill Likhodedov's avatar Kirill Likhodedov
Browse files

GitVersionTest: one more case of version output format.

parent 79e57376
Branches unavailable Tags unavailable
No related merge requests found
Showing with 3 additions and 1 deletion
+3 -1
......@@ -33,12 +33,14 @@ public class GitVersionTest {
private static final TestGitVersion[] commonTests = {
new TestGitVersion("git version 1.6.4", 1, 6, 4, 0),
new TestGitVersion("git version 1.7.3.3", 1, 7, 3, 3),
new TestGitVersion("git version 1.7.3.5.gb27be", 1, 7, 3, 5)
};
private static final TestGitVersion[] msysTests = {
new TestGitVersion("git version 1.6.4.msysgit.0", 1, 6, 4, 0),
new TestGitVersion("git version 1.7.3.3.msysgit.1", 1, 7, 3, 3),
new TestGitVersion("git version 1.7.3.2.msysgit", 1, 7, 3, 2)
new TestGitVersion("git version 1.7.3.2.msysgit", 1, 7, 3, 2),
new TestGitVersion("git version 1.7.3.5.msysgit.gb27be", 1, 7, 3, 5)
};
/**
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment