Skip to content

Commit 9f6bd1f

Browse files
committed
chore: polishing
1 parent 36890ae commit 9f6bd1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dotenvx-spring-boot/src/test/java/org/mvnsearch/dotenvx/spring/encryptor/DotenvxEncryptorImplTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import org.junit.jupiter.api.Test;
66

77
import java.io.FileReader;
8+
import java.util.HashMap;
89
import java.util.Properties;
910

1011
/**
@@ -21,7 +22,7 @@ public static void setUp() throws Exception {
2122
Properties properties = new Properties();
2223
properties.load(new FileReader(".env.keys"));
2324
String privateKeyHex = properties.getProperty("DOTENV_PRIVATE_KEY");
24-
dotenvxEncryptor = new DotenvxEncryptorImpl(publicKeyHex, privateKeyHex);
25+
dotenvxEncryptor = new DotenvxEncryptorImpl(publicKeyHex, privateKeyHex, new HashMap<>());
2526
}
2627

2728
@Test

0 commit comments

Comments
 (0)