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,
@@ -1645,9 +1648,6 @@ void main() {
16451648 final topicNarrow = eg.topicNarrow (stream.streamId, topic);
16461649 const content = 'outbox message content' ;
16471650
1648- final contentInputFinder = find.byWidgetPredicate (
1649- (widget) => widget is TextField && widget.controller is ComposeContentController );
1650-
16511651 Finder outboxMessageFinder = find.widgetWithText (
16521652 OutboxMessageWithPossibleSender , content, skipOffstage: true );
16531653
You can’t perform that action at this time.
0 commit comments