Skip to content

Commit fbea049

Browse files
committed
test(ui_oauth): fix a test because the button layout has changed
1 parent 63f41f3 commit fbea049

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

packages/firebase_ui_oauth/test/flutterfire_ui_oauth_test.dart

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,13 @@ void main() {
205205
home: Scaffold(
206206
body: Row(
207207
children: [
208-
OAuthProviderButtonBase(
209-
provider: provider,
210-
auth: FakeAuth(),
211-
label: 'Sign in with Fake provider',
212-
loadingIndicator: const CircularProgressIndicator(),
208+
Expanded(
209+
child: OAuthProviderButtonBase(
210+
provider: provider,
211+
auth: FakeAuth(),
212+
label: 'Sign in with Fake provider',
213+
loadingIndicator: const CircularProgressIndicator(),
214+
),
213215
)
214216
],
215217
),

0 commit comments

Comments
 (0)