]> source.dussan.org Git - jgit.git/commitdiff
CommitAndLogCommandTest: Use assumeFalse to skip test on Windows 29/64829/1
authorDavid Pursehouse <david.pursehouse@sonymobile.com>
Thu, 21 Jan 2016 06:30:23 +0000 (15:30 +0900)
committerDavid Pursehouse <david.pursehouse@sonymobile.com>
Thu, 21 Jan 2016 06:30:49 +0000 (15:30 +0900)
Use JUnit's assumeFalse method to cause the test to skip when
run on Windows.

Change-Id: I3f59440cfe62c37c127e381052b60471fbe8ec5e
Signed-off-by: David Pursehouse <david.pursehouse@sonymobile.com>
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTest.java

index 31b6d3b751c4cfff0a6b136fba9fe6815bbb3d47..1d5c6742c788a8db0e61df48ba9fb102f7da239e 100644 (file)
@@ -46,6 +46,7 @@ import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assert.fail;
+import static org.junit.Assume.assumeFalse;
 
 import java.io.File;
 import java.io.IOException;
@@ -259,8 +260,7 @@ public class CommitAndLogCommandTest extends RepositoryTestCase {
 
        @Test
        public void testModeChange() throws IOException, GitAPIException {
-               if (System.getProperty("os.name").startsWith("Windows"))
-                       return; // SKIP
+               assumeFalse(System.getProperty("os.name").startsWith("Windows"));// SKIP
                try (Git git = new Git(db)) {
                        // create file
                        File file = new File(db.getWorkTree(), "a.txt");