diff --git a/src/test/java/helpers/TestScryptHelper.java b/src/test/java/helpers/TestScryptHelper.java index ec2c24b..50c7f68 100644 --- a/src/test/java/helpers/TestScryptHelper.java +++ b/src/test/java/helpers/TestScryptHelper.java @@ -3,7 +3,6 @@ import java.nio.CharBuffer; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; -import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertThat; import org.junit.Test; @@ -39,7 +38,7 @@ byte[] hash = ScryptHelper.hash(password, salt, 16384, 8, 1, 64); - assertThat(hash, equalTo(standardVector)); + assertThat(hash, is(standardVector)); } @Test