Explorar el Código

scrabble-score: remove unused import; clean up test formatting

Stuart Kent hace 9 años
padre
commit
71c85f3bd9
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1
    3
      exercises/scrabble-score/src/test/java/ScrabbleScoreTest.java

+ 1
- 3
exercises/scrabble-score/src/test/java/ScrabbleScoreTest.java Ver fichero

@@ -1,5 +1,4 @@
1 1
 import org.junit.Test;
2
-import org.junit.Ignore;
3 2
 import org.junit.runner.RunWith;
4 3
 import org.junit.runners.Parameterized;
5 4
 
@@ -34,11 +33,10 @@ public class ScrabbleScoreTest {
34 33
         this.scrabbleScore = scrabbleScore;
35 34
     }
36 35
 
37
-
38 36
     @Test
39 37
     public void test() {
40 38
         Scrabble scrabble = new Scrabble(scrabbleInput);
41
-
42 39
         assertEquals(scrabbleScore, scrabble.getScore());
43 40
     }
41
+
44 42
 }