Skip to content

Commit

Permalink
test(integration): compare email instead of newEmail (#473)
Browse files Browse the repository at this point in the history
Test integration project doesn't require email confirmation anymore due send email limitation
  • Loading branch information
grdsdev authored Jul 22, 2024
1 parent 1269454 commit 4a2093d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/IntegrationTests/AuthClientIntegrationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ final class AuthClientIntegrationTests: XCTestCase {
let email = mockEmail()
let user = try await authClient.update(user: UserAttributes(email: email))

XCTAssertEqual(user.newEmail, email)
XCTAssertEqual(user.email, email)
}
}

Expand Down

0 comments on commit 4a2093d

Please sign in to comment.