Skip to content

Commit b10d4fb

Browse files
author
Alex Klymenko
committed
checkstyle: fix formatting
1 parent 5c04477 commit b10d4fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/com/thealgorithms/strings/MyAtoiTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ public class MyAtoiTest {
1111
@ParameterizedTest
1212
@CsvSource({"'42', 42", "' -42', -42", "'4193 with words', 4193", "'words and 987', 0", "'-91283472332', -2147483648", "'21474836460', 2147483647", "' +123', 123", "'', 0", "' ', 0", "'-2147483648', -2147483648", "'+2147483647', 2147483647", "' -0012a42', -12",
1313
"'9223372036854775808', 2147483647", "'-9223372036854775809', -2147483648", "'3.14159', 3", "' -0012', -12", "' 0000000000012345678', 12345678", "' -0000000000012345678', -12345678", "' +0000000000012345678', 12345678", "'0', 0", "'+0', 0", "'-0', 0"})
14-
void testMyAtoi(String input, int expected) {
14+
void
15+
testMyAtoi(String input, int expected) {
1516
assertEquals(expected, MyAtoi.myAtoi(input));
1617
}
1718

0 commit comments

Comments
 (0)