diff --git a/lockbox-ios/Presenter/WelcomePresenter.swift b/lockbox-ios/Presenter/WelcomePresenter.swift index 4e73b8254..7104c0ad4 100644 --- a/lockbox-ios/Presenter/WelcomePresenter.swift +++ b/lockbox-ios/Presenter/WelcomePresenter.swift @@ -104,11 +104,7 @@ extension WelcomePresenter { AlertActionButtonConfiguration( title: Constant.string.skip, tapObserver: self.skipButtonObserver, - style: .cancel), - AlertActionButtonConfiguration( - title: Constant.string.setPasscode, - tapObserver: self.setPasscodeButtonObserver, - style: .default) + style: .cancel) ] } diff --git a/lockbox-iosTests/WelcomePresenterSpec.swift b/lockbox-iosTests/WelcomePresenterSpec.swift index 8c2efd948..50556e11a 100644 --- a/lockbox-iosTests/WelcomePresenterSpec.swift +++ b/lockbox-iosTests/WelcomePresenterSpec.swift @@ -275,17 +275,6 @@ class WelcomePresenterSpec: QuickSpec { expect(argument).to(equal(.fxa)) } } - - describe("tapping the set passcode button") { - beforeEach { - self.view.alertControllerButtons![1].tapObserver!.onNext(()) - } - - it("routes to the touchid / passcode settings page") { - let action = self.dispatcher.dispatchedActions.popLast() as! SettingLinkAction - expect(action).to(equal(.touchIDPasscode)) - } - } } }