From 450a695dd0bc9cedf6252253ef432b23ea7361a1 Mon Sep 17 00:00:00 2001 From: firaja Date: Wed, 9 Sep 2020 18:39:20 +0200 Subject: [PATCH] #5: fix test --- src/test/com/password4j/PasswordTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/com/password4j/PasswordTest.java b/src/test/com/password4j/PasswordTest.java index 9f9715e8..dddcabbb 100644 --- a/src/test/com/password4j/PasswordTest.java +++ b/src/test/com/password4j/PasswordTest.java @@ -296,7 +296,7 @@ public void testConfigurablePepper() public void testSecureNeverNull() throws ClassNotFoundException { // GIVEN - PropertyReader.PROPERTIES.put("global.random.strong", "true"); + PropertyReader.properties.put("global.random.strong", "true"); // WHEN SecureRandom sr = AlgorithmFinder.getSecureRandom(); @@ -304,7 +304,7 @@ public void testSecureNeverNull() throws ClassNotFoundException // THEN Assert.assertNotNull(sr); - PropertyReader.PROPERTIES.put("global.random.strong", "false"); + PropertyReader.properties.put("global.random.strong", "false"); }