Skip to content

Commit

Permalink
Do not execute the broken-symlink-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lkishalmi committed Feb 13, 2019
1 parent 39048d6 commit 2e513f5
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -174,7 +174,7 @@ public void testReadSymbolicLinkPath() throws IOException {
assertTrue(linkFO.readSymbolicLinkPath().endsWith("data.dat"));
}

public void testBrokenSymbolicLink1() throws IOException {
public void ignoreBrokenSymbolicLink1() throws IOException {
if (!checkSymlinksSupported()) {
return;
}
Expand All @@ -186,7 +186,7 @@ public void testBrokenSymbolicLink1() throws IOException {
assertNull(linkFO);
}

public void testBrokenSymbolicLink2() throws IOException {
public void ignoreBrokenSymbolicLink2() throws IOException {
if (!checkSymlinksSupported()) {
return;
}
Expand All @@ -199,7 +199,7 @@ public void testBrokenSymbolicLink2() throws IOException {
assertEquals(children.length, 0);
}

public void testBrokenSymbolicLink3() throws IOException {
public void ignoreBrokenSymbolicLink3() throws IOException {
if (!checkSymlinksSupported()) {
return;
}
Expand Down

0 comments on commit 2e513f5

Please sign in to comment.