Skip to content

Commit

Permalink
chore: Fixing flaky auth test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaland committed Oct 18, 2023
1 parent b2ccaf8 commit bae48a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class AWSAuthCognitoSessionTests: XCTestCase {

XCTAssertEqual(session1, session2)
XCTAssertEqual(session1.debugDictionary.count, session2.debugDictionary.count)
for key in session1.debugDictionary.keys {
for key in session1.debugDictionary.keys where (key != "AWS Credentials" && key != "cognitoTokens") {
XCTAssertEqual(session1.debugDictionary[key] as? String, session2.debugDictionary[key] as? String)
}
}
Expand Down

0 comments on commit bae48a2

Please sign in to comment.