Просмотр исходного кода

secret-handshake: update to v1.1.0

https://github.com/exercism/problem-specifications/commit/69c8700e75700e6a8e4f012caae8c547519874d7#diff-54ab3721bf1c4fe66726b1e78c24bea1
Stuart Kent 9 лет назад
Родитель
Сommit
deac09a708

+ 1
- 1
exercises/secret-handshake/.meta/version Просмотреть файл

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

+ 1
- 9
exercises/secret-handshake/src/test/java/HandshakeCalculatorTest.java Просмотреть файл

@@ -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
 }