File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,9 @@ void main() {
125125 return findScrollView (tester).controller;
126126 }
127127
128+ final contentInputFinder = find.byWidgetPredicate (
129+ (widget) => widget is TextField && widget.controller is ComposeContentController );
130+
128131 group ('MessageListPage' , () {
129132 testWidgets ('ancestorOf finds page state from message' , (tester) async {
130133 await setupMessageListPage (tester,
@@ -1634,9 +1637,6 @@ void main() {
16341637 final topicNarrow = eg.topicNarrow (stream.streamId, topic);
16351638 const content = 'outbox message content' ;
16361639
1637- final contentInputFinder = find.byWidgetPredicate (
1638- (widget) => widget is TextField && widget.controller is ComposeContentController );
1639-
16401640 Finder outboxMessageFinder = find.widgetWithText (
16411641 OutboxMessageWithPossibleSender , content, skipOffstage: true );
16421642
You can’t perform that action at this time.
0 commit comments