From af7c011a533d617cab1d7e714d5cfd1d7918e3f2 Mon Sep 17 00:00:00 2001 From: Andrew Breckenridge Date: Sun, 8 May 2016 15:08:43 -0700 Subject: [PATCH] add forgotten parentheses to test function declarations --- Tests/RxCocoaTests/Control+RxTests+UIKit.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/RxCocoaTests/Control+RxTests+UIKit.swift b/Tests/RxCocoaTests/Control+RxTests+UIKit.swift index d33c53a4..f3ec9757 100644 --- a/Tests/RxCocoaTests/Control+RxTests+UIKit.swift +++ b/Tests/RxCocoaTests/Control+RxTests+UIKit.swift @@ -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()