We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ce7f1 commit 97c936dCopy full SHA for 97c936d
test/widgets/user_test.dart
@@ -95,12 +95,9 @@ void main() {
95
final user = eg.user(avatarUrl: 'https://zulip.com/avatar.png');
96
await store.addUser(user);
97
98
- await tester.pumpWidget(
99
- TestZulipApp(
100
- accountId: eg.selfAccount.id,
101
- child: AvatarImage(userId: user.userId, size: 32),
102
- ),
103
- );
+ await tester.pumpWidget(TestZulipApp(
+ accountId: eg.selfAccount.id,
+ child: AvatarImage(userId: user.userId, size: 32)));
104
await tester.pump(); // Image provider is created
105
await tester.pump(); // Image fails to load
106
expect(find.byIcon(ZulipIcons.person), findsOneWidget);
0 commit comments