Skip to content

Commit

Permalink
chore(): updated fetchAuthSession Unit Test
Browse files Browse the repository at this point in the history
  • Loading branch information
tyllark committed Feb 20, 2025
1 parent be0cfcf commit c1d150a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class NativeAuthPluginTests: XCTestCase {
case .success(let session):
XCTAssertEqual(session.isSignedIn, isSignedIn)
case .failure(let error):
if(error.code == "null-error") {
if(error.code != "null-error" && error.code != "channel-error") {
XCTFail("fetchAuthSession failed with error: \(error)")
}
}
Expand Down

0 comments on commit c1d150a

Please sign in to comment.