Bläddra i källkod

Merge pull request #606 from morrme/change-remove-final

change: remove "final" from test class declaration
Stuart Kent 9 år sedan
förälder
incheckning
a7489e5ddd
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1
    1
      exercises/change/src/test/java/ChangeCalculatorTest.java

+ 1
- 1
exercises/change/src/test/java/ChangeCalculatorTest.java Visa fil

@@ -8,7 +8,7 @@ import static java.util.Collections.emptyList;
8 8
 import static java.util.Collections.singletonList;
9 9
 import static org.junit.Assert.assertEquals;
10 10
 
11
-public final class ChangeCalculatorTest {
11
+public class ChangeCalculatorTest {
12 12
 
13 13
     /*
14 14
      * See https://github.com/junit-team/junit4/wiki/Rules for information on JUnit Rules in general and