add forgotten parentheses to test function declarations

This commit is contained in:
Andrew Breckenridge 2016-05-08 15:08:43 -07:00
parent c4e83f3f34
commit af7c011a53
1 changed files with 2 additions and 2 deletions

View File

@ -161,14 +161,14 @@ extension ControlTests {
// UIAlertAction
extension ControlTests {
func testAlertAction_Enable {
func testAlertAction_Enable() {
let subject = UIAlertAction()
Observable.just(false).subscribe(subject.rx_enabled).dispose()
XCTAssertTrue(subject.enabled == true)
}
func testAlertAction_Disable {
func testAlertAction_Disable() {
let subject = UIAlertAction()
Observable.just(false).subscribe(subject.rx_enabled).dispose()