Skip to content

Commit 547d174

Browse files
committed
Fix Formatting
1 parent d2d1275 commit 547d174

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crypto/src/test/java/org/springframework/security/crypto/argon2/Argon2EncodingUtilsTests.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ public void decodeWhenNotAnArgon2HashThenThrowException() {
9494

9595
@Test
9696
public void decodeWhenNonexistingAlgorithmThenThrowException() {
97-
assertThatIllegalArgumentException().isThrownBy(() -> Argon2EncodingUtils
98-
.decode("$argon2x$v=19$m=1024,t=3,p=2$Y1JkRmJDdzIzZ3oyTWx4aw$cGE5Cbd/cx7micVhXVBdH5qTr66JI1iUyuNNVAnErXs"))
97+
assertThatIllegalArgumentException()
98+
.isThrownBy(() -> Argon2EncodingUtils.decode(
99+
"$argon2x$v=19$m=1024,t=3,p=2$Y1JkRmJDdzIzZ3oyTWx4aw$cGE5Cbd/cx7micVhXVBdH5qTr66JI1iUyuNNVAnErXs"))
99100
.withMessageContaining("argon2x");
100101
}
101102

0 commit comments

Comments
 (0)