Skip to content

Commit 5f2c1e8

Browse files
committed
formatting
1 parent 8ba4fce commit 5f2c1e8

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

packages/devtools_app/test/shared/ui/hover_positioning_test.dart

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ void main() {
124124
expect(hoverContentFinderWithTitle, findsOneWidget);
125125

126126
final containerWithTitle = find
127-
.ancestor(of: hoverContentFinderWithTitle, matching: find.byType(Container))
127+
.ancestor(
128+
of: hoverContentFinderWithTitle,
129+
matching: find.byType(Container),
130+
)
128131
.last;
129132

130133
final renderBoxWithTitle =
@@ -140,16 +143,16 @@ void main() {
140143
'HoverCard height clamping without title',
141144
const Size(800, 600),
142145
(WidgetTester tester) async {
143-
await pumpHoverCardTooltip(
144-
tester,
145-
alignment: Alignment.bottomCenter,
146-
);
146+
await pumpHoverCardTooltip(tester, alignment: Alignment.bottomCenter);
147147

148148
final hoverContentFinderNoTitle = find.text('Hover Content');
149149
expect(hoverContentFinderNoTitle, findsOneWidget);
150150

151151
final containerNoTitle = find
152-
.ancestor(of: hoverContentFinderNoTitle, matching: find.byType(Container))
152+
.ancestor(
153+
of: hoverContentFinderNoTitle,
154+
matching: find.byType(Container),
155+
)
153156
.last;
154157

155158
final renderBoxNoTitle =

0 commit comments

Comments
 (0)