Ver código fonte

Merge pull request #967 from exercism/secret-handshake-update

secret-handshake: update to v1.1.0
FridaTveit 9 anos atrás
pai
commit
4b92611dd9

+ 1
- 1
exercises/secret-handshake/.meta/version Ver arquivo

@@ -1 +1 @@
1
-1.0.0
1
+1.1.0

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

@@ -8,8 +8,8 @@ import static java.util.Collections.singletonList;
8 8
 import static org.junit.Assert.assertEquals;
9 9
 
10 10
 public class HandshakeCalculatorTest {
11
-    private HandshakeCalculator handshakeCalculator;
12 11
 
12
+    private HandshakeCalculator handshakeCalculator;
13 13
 
14 14
     @Before
15 15
     public void setUp() {
@@ -103,12 +103,4 @@ public class HandshakeCalculatorTest {
103 103
                 handshakeCalculator.calculateHandshake(0));
104 104
     }
105 105
 
106
-    @Ignore("Remove to run test")
107
-    @Test
108
-    public void testThatInputWithLower5BitsNotSetYieldsNoActions() {
109
-        assertEquals(
110
-                emptyList(),
111
-                handshakeCalculator.calculateHandshake(32));
112
-    }
113
-
114 106
 }