Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
turing85 authored and dependabot[bot] committed Mar 8, 2024
1 parent 1e492b2 commit 8d019fc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ class FromStringLongListSupplierTest {
@Test
void throwsOnIllegalInput() {
// GIVEN
String input = """
String input =
"""
0,
ouch,
2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ void constructExpectedMonkeys(char operatorAsChar) {
long expectedRootValue =
expectedRootOperator.applyAsLong(expectedLeftValue, expectedRightValue);
String input =
"""
%s: %s %c %s
%s: %d
%s: %d
"""
"""
%s: %s %c %s
%s: %d
%s: %d
"""
.formatted(
expectedRootName,
expectedLeftName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ class FromStringFieldsAndCommandsSupplierTest {
@Test
void throwOnMalformedMap() {
// GIVEN
String malformedInput = """
String malformedInput =
"""
. .
1U1
Expand All @@ -26,7 +27,8 @@ void throwOnMalformedMap() {
@Test
void throwOnMissingLastStepsInCommand() {
// GIVEN
String malformedInput = """
String malformedInput =
"""
.
1U
Expand All @@ -41,7 +43,8 @@ void throwOnMissingLastStepsInCommand() {
@Test
void throwOnMalformedCommand() {
// GIVEN
String malformedInput = """
String malformedInput =
"""
.
1UU1
Expand Down

0 comments on commit 8d019fc

Please sign in to comment.