Skip to content
Snippets Groups Projects
Commit 0b923a40 authored by Léo Banno-Cloutier's avatar Léo Banno-Cloutier
Browse files

jams-ca: rename crl.pem to jams.crl

Change-Id: I4363c81083bd237866c527d68f79ea0d9ab29bff
parent d0d7d2fc
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ public class CRLWorker extends X509Worker<RevocationRequest> {
@Getter
private final CRLFileStorage crlFileStorage =
new CRLFileStorage(System.getProperty("user.dir") + File.separator + "crl.pem");
new CRLFileStorage(System.getProperty("user.dir") + File.separator + "jams.crl");
@Getter @Setter private AtomicBoolean stop = new AtomicBoolean(false);
......
......@@ -54,8 +54,8 @@ class SystemAccountBuilderTest {
@BeforeAll
static void setUp() throws Exception {
// Delete the crl.pem file if it exists.
File file = new File(System.getProperty("user.dir") + File.separator + "crl.pem");
// Delete the jams.crl file if it exists.
File file = new File(System.getProperty("user.dir") + File.separator + "jams.crl");
file.delete();
InputStream path;
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
......@@ -158,7 +158,7 @@ class SystemAccountBuilderTest {
@AfterAll
static void afterAll() {
File file = new File(System.getProperty("user.dir") + File.separator + "crl.pem");
File file = new File(System.getProperty("user.dir") + File.separator + "jams.crl");
file.delete();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment