Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

[google_sign_in] Fix tests to recognize new request attribute. #5702

Merged
merged 1 commit into from
May 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/google_sign_in/google_sign_in/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

* Fixes tests to recognize new default `forceCodeForRefreshToken` request attribute.

## 5.3.1

* Fixes library_private_types_in_public_api, sort_child_properties_last and use_key_in_widget_constructors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ void main() {
'scopes': <String>[],
'hostedDomain': null,
'clientId': fakeClientId,
'forceCodeForRefreshToken': false,
}),
isMethodCall('signIn', arguments: null),
],
Expand Down Expand Up @@ -431,5 +432,6 @@ Matcher _isSignInMethodCall({String signInOption = 'SignInOption.standard'}) {
'scopes': <String>[],
'hostedDomain': null,
'clientId': null,
'forceCodeForRefreshToken': false,
});
}