Skip to content

Commit 14299b8

Browse files
authored
Fix CollectionTestCase calling super setup on tearDown (apple#23)
Fixes issue apple/swift-collections#17
1 parent 0096c5b commit 14299b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/CollectionsTestSupport/AssertionContexts/CollectionTestCase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ open class CollectionTestCase: XCTestCase {
2323
}
2424

2525
public override func tearDown() {
26-
super.setUp()
2726
TestContext.pop(context)
2827
_context = nil
28+
super.tearDown()
2929
}
3030
}

0 commit comments

Comments
 (0)