From 69f287d117cc2032dd2cf9ec3ae28964ed04739e Mon Sep 17 00:00:00 2001 From: DatDang Date: Tue, 15 Apr 2025 14:20:01 +0700 Subject: [PATCH] fixup! TF-3649 Fix reply to own sent email --- integration_test/robots/thread_robot.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integration_test/robots/thread_robot.dart b/integration_test/robots/thread_robot.dart index 507fd94ee..d21a76d05 100644 --- a/integration_test/robots/thread_robot.dart +++ b/integration_test/robots/thread_robot.dart @@ -24,8 +24,7 @@ class ThreadRobot extends CoreRobot { Future openEmailWithSubject(String subject) async { final email = $(EmailTileBuilder) - .which((view) => view.presentationEmail.subject == subject) - .first; + .which((view) => view.presentationEmail.subject == subject); await $.waitUntilVisible(email); await email.tap(); await $.pump(const Duration(seconds: 2));