Skip to content

Commit 138369c

Browse files
committed
Remove a few added super.setUp() and super.tearDown()
1 parent bc80681 commit 138369c

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

WordPress/WordPressTest/Menus/MenuItemTests.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ class MenuItemTests: XCTestCase {
99
}
1010

1111
override func setUp() {
12-
super.setUp()
1312
contextManager = TestContextManager()
1413
}
1514

1615
override func tearDown() {
17-
super.tearDown()
1816
ContextManager.overrideSharedInstance(nil)
1917
context.reset()
2018
}

WordPress/WordPressTest/ReaderPostTest.m

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@ @implementation ReaderPostTest
1515

1616
- (void)setUp
1717
{
18-
[super setUp];
1918
self.coreDataStack = [[TestContextManager alloc] init];
2019
}
2120

2221
- (void)tearDown
2322
{
24-
[super tearDown];
2523
self.coreDataStack = nil;
2624
}
2725

WordPress/WordPressTest/ReaderSelectInterestsCoordinatorTests.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ class ReaderSelectInterestsCoordinatorTests: XCTestCase {
55
private var contextManager: TestContextManager!
66

77
override func setUp() {
8-
super.setUp()
98
contextManager = TestContextManager()
109
}
1110

1211
override func tearDown() {
13-
super.tearDown()
1412
ContextManager.overrideSharedInstance(nil)
1513
}
1614

WordPress/WordPressTest/ReaderStreamViewControllerTests.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@ class ReaderStreamViewControllerTests: XCTestCase {
66
private var contextManager: TestContextManager!
77

88
override func setUp() {
9-
super.setUp()
109
contextManager = TestContextManager()
1110
}
1211

1312
override func tearDown() {
14-
super.tearDown()
1513
ContextManager.overrideSharedInstance(nil)
1614
}
1715

0 commit comments

Comments
 (0)