Skip to content

Commit

Permalink
spelling: unmodifiable
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref authored and marcphilipp committed Mar 15, 2019
1 parent a0f07dd commit 7c2ac2b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public void testSuiteFiltering() throws Exception {
fail("Expected 'NoTestsRemainException' due to complete filtering");
}

public static class SuiteWithUnmodifyableChildList extends Suite {
public static class SuiteWithUnmodifiableChildList extends Suite {

public SuiteWithUnmodifyableChildList(
public SuiteWithUnmodifiableChildList(
Class<?> klass, RunnerBuilder builder)
throws InitializationError {
super(klass, builder);
Expand All @@ -109,14 +109,14 @@ protected List<Runner> getChildren() {
}
}

@RunWith(SuiteWithUnmodifyableChildList.class)
@RunWith(SuiteWithUnmodifiableChildList.class)
@SuiteClasses({ExampleTest.class})
public static class ExampleSuiteWithUnmodifyableChildList {
public static class ExampleSuiteWithUnmodifiableChildList {
}

@Test
public void testSuiteFilteringWithUnmodifyableChildList() throws Exception {
Runner runner = Request.aClass(ExampleSuiteWithUnmodifyableChildList.class)
public void testSuiteFilteringWithUnmodifiableChildList() throws Exception {
Runner runner = Request.aClass(ExampleSuiteWithUnmodifiableChildList.class)
.getRunner();
Filter filter = notThisMethodName("test1");
try {
Expand Down

0 comments on commit 7c2ac2b

Please sign in to comment.