Explorar el Código

secret-handshake: remove "final" keyword from test declaration

See #571
morrme hace 9 años
padre
commit
01d1393cc9

+ 1
- 1
exercises/secret-handshake/src/test/java/HandshakeCalculatorTest.java Ver fichero

@@ -7,7 +7,7 @@ import static java.util.Collections.emptyList;
7 7
 import static java.util.Collections.singletonList;
8 8
 import static org.junit.Assert.assertEquals;
9 9
 
10
-public final class HandshakeCalculatorTest {
10
+public class HandshakeCalculatorTest {
11 11
     private HandshakeCalculator handshakeCalculator;
12 12
 
13 13