Skip to content

Commit

Permalink
Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
crazytonyli committed Nov 24, 2022
1 parent d91d92d commit d7b09e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/WordPressSharedTests/LoggingTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ class LoggingTest: XCTestCase {
}

func testNoLogging() {
WPSharedSetLoggingDelegate(nil);
XCTAssertNoThrow(WPSharedLogInfo("this log should not be printed"));
XCTAssertEqual(self.logger.infoLogs.count, 0);
WPSharedSetLoggingDelegate(nil)
XCTAssertNoThrow(WPSharedLogInfo("this log should not be printed"))
XCTAssertEqual(self.logger.infoLogs.count, 0)
}

}

0 comments on commit d7b09e3

Please sign in to comment.