We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcdc442 commit 72dea8dCopy full SHA for 72dea8d
Demo/DemoTests/AlertActionTests.swift
@@ -21,7 +21,7 @@ class AlertActionTests: QuickSpec {
21
expect(subject.rx_action) === action
22
}
23
24
- it("disables the button while executing") {
+ it("disables the alert action while executing") {
25
let subject = UIAlertAction.Action("Hi", style: .Default)
26
27
var observer: AnyObserver<Void>!
@@ -41,7 +41,7 @@ class AlertActionTests: QuickSpec {
41
expect(subject.enabled).toEventually( beTrue() )
42
43
44
- it("disables the button if the Action is disabled") {
+ it("disables the alert action if the Action is disabled") {
45
46
47
subject.rx_action = emptyAction(Observable.just(false))
0 commit comments