Skip to content

Commit a1daed0

Browse files
authored
Removing leading spaces in empty lines
1 parent 49f5da8 commit a1daed0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

exercises/practice/secret-handshake/src/test/java/HandshakeCalculatorTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,23 +97,23 @@ public void testThatInput0YieldsNoActions() {
9797
@DisplayName("handles input with more than five bits with reversal")
9898
public void testThatHandlesMoreThanFiveBinaryPlacesWithReversal() {
9999
assertThat(handshakeCalculator.calculateHandshake(51))
100-
.containsExactly(Signal.DOUBLE_BLINK, Signal.WINK);
100+
.containsExactly(Signal.DOUBLE_BLINK, Signal.WINK);
101101
}
102-
102+
103103
@Disabled("Remove to run test")
104104
@Test
105105
@DisplayName("handles input with more than five bits without reversal")
106106
public void testThatHandlesMoreThanFiveBinaryPlacesWithoutReversal() {
107107
assertThat(handshakeCalculator.calculateHandshake(35))
108-
.containsExactly(Signal.WINK, Signal.DOUBLE_BLINK);
108+
.containsExactly(Signal.WINK, Signal.DOUBLE_BLINK);
109109
}
110-
110+
111111
@Disabled("Remove to run test")
112112
@Test
113113
@DisplayName("all actions for input with more than five bits")
114114
public void testInputThatYieldsAllActionsFromMoreThanFiveBinaryPlaces() {
115115
assertThat(handshakeCalculator.calculateHandshake(111))
116-
.containsExactly(Signal.WINK, Signal.DOUBLE_BLINK, Signal.CLOSE_YOUR_EYES, Signal.JUMP);
116+
.containsExactly(Signal.WINK, Signal.DOUBLE_BLINK, Signal.CLOSE_YOUR_EYES, Signal.JUMP);
117117
}
118118

119119
}

0 commit comments

Comments
 (0)