Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer committed Nov 8, 2023
1 parent 05da762 commit 824596d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/common/fixtures/shell_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ List<int> getCurrentViewWidths() {
final List<int> result = <int>[];
for (final FlutterView view in PlatformDispatcher.instance.views) {
result.add(view.viewId);
result.add(view.physicalGeometry.width.round());
result.add(view.physicalSize.width.round());
}
return result;
}
Expand Down

0 comments on commit 824596d

Please sign in to comment.