From 98b15b7dc2922da2d55b06d62de8f1af7c513ebc Mon Sep 17 00:00:00 2001 From: Anton Yarmolenko <37253+rnr@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:46:48 +0100 Subject: [PATCH] fix: fixed test --- .../Presentation/Login/SignInViewModelTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Authorization/AuthorizationTests/Presentation/Login/SignInViewModelTests.swift b/Authorization/AuthorizationTests/Presentation/Login/SignInViewModelTests.swift index 01460d00..0b6c1c96 100644 --- a/Authorization/AuthorizationTests/Presentation/Login/SignInViewModelTests.swift +++ b/Authorization/AuthorizationTests/Presentation/Login/SignInViewModelTests.swift @@ -120,7 +120,7 @@ final class SignInViewModelTests: XCTestCase { await viewModel.ssoLogin(title: "Riyadah") Verify(interactor, 1, .login(ssoToken: .any)) - Verify(router, 1, .showMainOrWhatsNewScreen(sourceScreen: .any, authMethod: .any)) + Verify(router, 1, .showMainOrWhatsNewScreen(sourceScreen: .any, postLoginData: .any)) XCTAssertEqual(viewModel.errorMessage, nil) XCTAssertEqual(viewModel.isShowProgress, true)