Browse Source

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

change: remove "final" from test class declaration
Stuart Kent 9 years ago
parent
commit
a7489e5ddd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      exercises/change/src/test/java/ChangeCalculatorTest.java

+ 1
- 1
exercises/change/src/test/java/ChangeCalculatorTest.java View File

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