[go: nahoru, domu]

Skip to content

Commit

Permalink
chore(deps): Bump flutter_facebook_auth from 6.2.0 to 7.0.0 in /flutt…
Browse files Browse the repository at this point in the history
…er_news_example/packages/authentication_client/firebase_authentication_client (#1204)
  • Loading branch information
dependabot[bot] committed May 21, 2024
1 parent db6567d commit 08005d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class FirebaseAuthenticationClient implements AuthenticationClient {
);
}

final accessToken = loginResult.accessToken?.token;
final accessToken = loginResult.accessToken?.tokenString;
if (accessToken == null) {
throw LogInWithFacebookFailure(
Exception(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
firebase_core_platform_interface: ^5.0.0
flutter:
sdk: flutter
flutter_facebook_auth: ^6.0.0
flutter_facebook_auth: ^7.0.0
google_sign_in: ^6.0.2
plugin_platform_interface: ^2.1.3
sign_in_with_apple: ^6.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ void main() {
loginResult = MockFacebookLoginResult();
accessTokenResult = MockFacebookAccessToken();

when(() => accessTokenResult.token).thenReturn(accessToken);
when(() => accessTokenResult.tokenString).thenReturn(accessToken);
when(() => loginResult.accessToken).thenReturn(accessTokenResult);
when(() => loginResult.status)
.thenReturn(facebook_auth.LoginStatus.success);
Expand Down

0 comments on commit 08005d3

Please sign in to comment.