From 9ff788d69f9e969f31d2ea8085a6d00a5444560a Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Wed, 22 Jan 2025 21:40:58 -0800 Subject: [PATCH] Fix some swiftlint issues. --- .../NetNewsWire_iOSTests.swift | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Tests/NetNewsWire-iOSTests/NetNewsWire_iOSTests.swift b/Tests/NetNewsWire-iOSTests/NetNewsWire_iOSTests.swift index 739b8a942..6be658515 100644 --- a/Tests/NetNewsWire-iOSTests/NetNewsWire_iOSTests.swift +++ b/Tests/NetNewsWire-iOSTests/NetNewsWire_iOSTests.swift @@ -9,27 +9,16 @@ import XCTest class NetNewsWire_iOSTests: XCTestCase { - - override func setUp() { - super.setUp() - // Put setup code here. This method is called before the invocation of each test method in the class. - } - - override func tearDown() { - // Put teardown code here. This method is called after the invocation of each test method in the class. - super.tearDown() - } - + func testExample() { // This is an example of a functional test case. // Use XCTAssert and related functions to verify your tests produce the correct results. } - + func testPerformanceExample() { // This is an example of a performance test case. self.measure { // Put the code you want to measure the time of here. } } - }