add forgotten parentheses to test function declarations
This commit is contained in:
parent
c4e83f3f34
commit
af7c011a53
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue