Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta committed Sep 6, 2024
1 parent e3fcd8a commit 618cffc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class WebAuthenticationInitializerTests: XCTestCase {
XCTAssertEqual(auth.signInFlow.client.configuration.clientId, "client_id")
XCTAssertEqual(auth.signInFlow.client.configuration.scopes, "openid profile")
XCTAssertTrue(auth.signInFlow.client === auth.signOutFlow?.client)
XCTAssertEqual(auth.signInFlow.additionalParameters, ["foo": "bar"])
XCTAssertEqual(auth.signOutFlow?.additionalParameters, ["foo": "bar"])
XCTAssertEqual(auth.signInFlow.additionalParameters?.stringComponents, ["foo": "bar"])
XCTAssertEqual(auth.signOutFlow?.additionalParameters?.stringComponents, ["foo": "bar"])
}
}

Expand Down

0 comments on commit 618cffc

Please sign in to comment.