Skip to content

Commit 0a74c41

Browse files
m-dzianishchytsandrus
authored andcommitted
Make test methods public
1 parent 8a90b85 commit 0a74c41

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

jjava-jupyter/src/test/java/org/dflib/jjava/jupyter/kernel/util/PathsHandlerTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313

1414
import static org.junit.jupiter.api.Assertions.assertEquals;
1515

16-
class PathsHandlerTest {
16+
public class PathsHandlerTest {
1717

1818
@Test
19-
void testSpit() {
19+
public void testSpit() {
2020
assertEquals(List.of(), PathsHandler.split(""));
2121
assertEquals(List.of("a"), PathsHandler.split("a"));
2222
assertEquals(List.of("a", "b/c/d"), PathsHandler.split("a" + File.pathSeparator + "b/c/d"));
2323
}
2424

2525
@Test
26-
void testSpitAndResolveGlobs(@TempDir Path dir) throws IOException {
26+
public void testSpitAndResolveGlobs(@TempDir Path dir) throws IOException {
2727

2828
Files.createFile(dir.resolve("a1.txt"));
2929
Files.createFile(dir.resolve("a2.txt"));

0 commit comments

Comments
 (0)