From 17a3b0df8382f1069fb9744c30bdec9d82fafcc4 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Tue, 20 Jun 2023 16:54:19 +0530 Subject: [PATCH] test: fix test. Signed-off-by: xsahil03x --- .../test/src/indicators/sending_indicator_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/stream_chat_flutter/test/src/indicators/sending_indicator_test.dart b/packages/stream_chat_flutter/test/src/indicators/sending_indicator_test.dart index 7998fc84..dd84aef9 100644 --- a/packages/stream_chat_flutter/test/src/indicators/sending_indicator_test.dart +++ b/packages/stream_chat_flutter/test/src/indicators/sending_indicator_test.dart @@ -27,7 +27,7 @@ void main() { ); testWidgets( - 'StreamSendingIndicator shows an Icon if message state is not initial', + 'StreamSendingIndicator shows an Icon if message state is sending', (tester) async { await tester.pumpWidget( MaterialApp( @@ -37,7 +37,7 @@ void main() { body: Center( child: StreamSendingIndicator( message: Message( - state: MessageState.sent, + state: MessageState.sending, ), ), ),