Skip to content

Commit

Permalink
Clean-up after review in github's compare view. Thanks, github.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsaff committed Apr 8, 2010
1 parent c84f84e commit a30e87b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/junit/framework/JUnit4TestAdapter.java
Expand Up @@ -16,9 +16,9 @@
public class JUnit4TestAdapter implements Test, Filterable, Sortable, Describable {
private final Class<?> fNewTestClass;

private Runner fRunner;
private final Runner fRunner;

private JUnit4TestAdapterCache fCache;
private final JUnit4TestAdapterCache fCache;

public JUnit4TestAdapter(Class<?> newTestClass) {
this(newTestClass, JUnit4TestAdapterCache.getDefault());
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/junit/rules/ExternalResource.java
Expand Up @@ -58,7 +58,6 @@ protected void before() throws Throwable {

/**
* Override to tear down your specific external resource.
* @throws if setup fails (which will disable {@code after}
*/
protected void after() {
// do nothing
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/junit/tests/framework/SuiteTest.java
Expand Up @@ -82,7 +82,7 @@ public void testOneTestCase() {
assertTrue(fResult.wasSuccessful());
}
public void testOneTestCaseEclipseSeesSameStructureAs381() {
TestSuite t= new TestSuite(ThreeTestCases .class);
TestSuite t= new TestSuite(ThreeTestCases.class);
assertEquals(3, Collections.list(t.tests()).size());
}
public void testShadowedTests() {
Expand Down

0 comments on commit a30e87b

Please sign in to comment.