Skip to content

Commit

Permalink
Retrieve custom test directory
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-cherednik committed Dec 6, 2021
1 parent ec6da64 commit 903e88e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/test/java/ru/olegcherednik/zip4jvm/TestData.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class TestData {

public static final Path dirRoot = createTempDirectory("zip4jvm");
// public static final Path dirRoot = Paths.get("d:/zip4jvm/foo");
// public static final Path dirRoot = createTempDirectory("zip4jvm");
public static final Path dirRoot = Paths.get("d:/zip4jvm/foo");
public static final Path dirSrc = dirRoot.resolve("src");

public static final String dirNameBikes = "bikes";
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/ru/olegcherednik/zip4jvm/Zip4jvmSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class Zip4jvmSuite {
public static final String passwordStr = "1";
public static final char[] password = passwordStr.toCharArray();
/** Clear resources */
public static final boolean clear = true;
public static final boolean clear = false;

public static final long SIZE_1MB = 1024 * 1024;
public static final long SIZE_2MB = 2 * SIZE_1MB;
Expand Down

0 comments on commit 903e88e

Please sign in to comment.