File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/flutter/test/material Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ void main() {
240
240
late Size oldSize;
241
241
try {
242
242
oldSize = tester.binding.window.physicalSize;
243
- tester.binding.window.physicalSizeTestValue = const Size (100 , 100 );
243
+ tester.binding.window.physicalSizeTestValue = const Size (1000 , 1000 );
244
244
245
245
final Key key = GlobalKey ();
246
246
await tester.pumpWidget (
@@ -268,7 +268,7 @@ void main() {
268
268
await expectLater (find.byKey (key), matchesGoldenFile ('zoom_page_transition.small.png' ));
269
269
270
270
// Increase the window size.
271
- tester.binding.window.physicalSizeTestValue = const Size (400 , 400 );
271
+ tester.binding.window.physicalSizeTestValue = const Size (1000 , 2000 );
272
272
273
273
await tester.pump ();
274
274
await tester.pump (const Duration (milliseconds: 50 ));
You can’t perform that action at this time.
0 commit comments