From e78bdc60278f96407d89b2c009363a8793e76648 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Tue, 8 Dec 2020 11:52:11 +0530 Subject: [PATCH] fix test Signed-off-by: Sahil Kumar --- test/src/message_action_modal_test.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/src/message_action_modal_test.dart b/test/src/message_action_modal_test.dart index 5b0c1678..0dcd8d87 100644 --- a/test/src/message_action_modal_test.dart +++ b/test/src/message_action_modal_test.dart @@ -71,6 +71,7 @@ void main() { showCopyMessage: false, showDeleteMessage: false, showReply: false, + showThreadReply: false, message: Message( text: 'test', user: User( @@ -87,6 +88,7 @@ void main() { await tester.pump(Duration(milliseconds: 1000)); expect(find.byKey(Key('MessageWidget')), findsOneWidget); + expect(find.text('Reply'), findsNothing); expect(find.text('Thread reply'), findsNothing); expect(find.text('Edit message'), findsNothing); expect(find.text('Delete message'), findsNothing);