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 @@ -129,6 +129,9 @@ void main() {
129129 return findScrollView (tester).controller;
130130 }
131131
132+ final contentInputFinder = find.byWidgetPredicate (
133+ (widget) => widget is TextField && widget.controller is ComposeContentController );
134+
132135 group ('MessageListPage' , () {
133136 testWidgets ('ancestorOf finds page state from message' , (tester) async {
134137 await setupMessageListPage (tester,
@@ -1837,9 +1840,6 @@ void main() {
18371840 final topicNarrow = eg.topicNarrow (stream.streamId, topic);
18381841 const content = 'outbox message content' ;
18391842
1840- final contentInputFinder = find.byWidgetPredicate (
1841- (widget) => widget is TextField && widget.controller is ComposeContentController );
1842-
18431843 Finder outboxMessageFinder = find.widgetWithText (
18441844 OutboxMessageWithPossibleSender , content, skipOffstage: true );
18451845
You can’t perform that action at this time.
0 commit comments