Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ce / certificate-ripper / fix-test-temp-dir-path.patch
blobff9b7d3bebd554bd7fb3ca964be1f612e4663efd
1 diff --git a/src/test/java/nl/altindag/crip/command/FileBaseTest.java b/src/test/java/nl/altindag/crip/command/FileBaseTest.java
2 index 674ca10..f140601 100644
3 --- a/src/test/java/nl/altindag/crip/command/FileBaseTest.java
4 +++ b/src/test/java/nl/altindag/crip/command/FileBaseTest.java
5 @@ -26,7 +26,7 @@ import java.util.stream.Collectors;
7 public class FileBaseTest extends BaseTest {
9 - protected static final Path TEMP_DIRECTORY = Paths.get(System.getProperty("user.home"), "certificate-ripper-temp");
10 + protected static final Path TEMP_DIRECTORY = Paths.get(System.getenv("TMP"), "certificate-ripper-temp");
12 @BeforeEach
13 void createTempDirAndClearConsoleCaptor() throws IOException {