Skip to content

Commit 36da2de

Browse files
committed
Mechanical reformat (only) of MultibaseBadInputsTest with google-java-format
1 parent 72d10a5 commit 36da2de

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/test/java/io/ipfs/multibase/MultibaseBadInputsTest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
package io.ipfs.multibase;
22

3+
import static org.junit.jupiter.api.Assertions.assertThrows;
4+
35
import java.util.Arrays;
46
import java.util.Collection;
57

68
import org.junit.jupiter.params.ParameterizedTest;
79
import org.junit.jupiter.params.provider.MethodSource;
810

9-
import static org.junit.jupiter.api.Assertions.assertThrows;
10-
1111
public class MultibaseBadInputsTest {
1212

1313
public static Collection<String> data() {
1414
return Arrays.asList(
15-
"f012", // Hex string of odd length, not allowed in Base16
16-
"f0g", // 'g' char is not allowed in Base16
17-
"zt1Zv2yaI", // 'I' char is not allowed in Base58
18-
"2", // '2' is not a valid encoding marker
19-
"" // Empty string is not a valid multibase
15+
"f012", // Hex string of odd length, not allowed in Base16
16+
"f0g", // 'g' char is not allowed in Base16
17+
"zt1Zv2yaI", // 'I' char is not allowed in Base58
18+
"2", // '2' is not a valid encoding marker
19+
"" // Empty string is not a valid multibase
2020
);
2121
}
2222

0 commit comments

Comments
 (0)