Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix missing directory
  • Loading branch information
Katsute committed Oct 14, 2020
commit ca43745f13db5976ed00d9f920a0dfa891731e52
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public final class FileHandlerAddDirTest {

@Rule
public final TemporaryFolder directory = new TemporaryFolder(new File("src/test/resources"));
public final TemporaryFolder directory = new TemporaryFolder(new File("."));

@SuppressWarnings("SpellCheckingInspection")
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public final class FileHandlerAddFilesTest {

@Rule
public final TemporaryFolder directory = new TemporaryFolder(new File("src/test/resources"));
public final TemporaryFolder directory = new TemporaryFolder(new File("."));


@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public final class FileHandlerAddTest {

@Rule
public final TemporaryFolder directory = new TemporaryFolder(new File("src/test/resources"));
public final TemporaryFolder directory = new TemporaryFolder(new File("."));

@SuppressWarnings("SpellCheckingInspection")
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public final class FileHandlerNoWalkTest {

@Rule
public final TemporaryFolder directory = new TemporaryFolder(new File("src/test/resources"));
public final TemporaryFolder directory = new TemporaryFolder(new File("."));

@SuppressWarnings("SpellCheckingInspection")
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public final class FileHandlerWalkTest {

@Rule
public final TemporaryFolder directory = new TemporaryFolder(new File("src/test/resources"));
public final TemporaryFolder directory = new TemporaryFolder(new File("."));

@Test
public final void addDirectoryTestsWalk() throws IOException, InterruptedException{
Expand Down