Skip to content

Commit cf1246f

Browse files
committed
Follow JUnit 5 convention for method visibility
1 parent b467896 commit cf1246f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/io/FileUtilsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ void testForceDeleteAFileDoesNotExist() {
16711671
}
16721672

16731673
@Test
1674-
public void testForceDeleteBrokenSymlink() throws Exception {
1674+
void testForceDeleteBrokenSymlink() throws Exception {
16751675
final ImmutablePair<Path, Path> pair = createTempSymbolicLinkedRelativeDir();
16761676
final Path symlinkedDir = pair.getLeft();
16771677
final Path targetDir = pair.getRight();
@@ -1765,7 +1765,7 @@ void testForceDeleteReadOnlyFile() throws Exception {
17651765
}
17661766

17671767
@Test
1768-
public void testForceDeleteSymlink() throws Exception {
1768+
void testForceDeleteSymlink() throws Exception {
17691769
final ImmutablePair<Path, Path> pair = createTempSymbolicLinkedRelativeDir();
17701770
final Path symlinkedDir = pair.getLeft();
17711771
final Path targetDir = pair.getRight();

0 commit comments

Comments
 (0)