From 5bdfcbfd9314920ff7337c8dba3b5cd906aa200e Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Mon, 29 Apr 2024 17:52:14 -0400 Subject: [PATCH] test: remove patch e2e grep causing timeouts --- scripts/patch_e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch_e2e.sh b/scripts/patch_e2e.sh index 69c6ac10..1214bc85 100755 --- a/scripts/patch_e2e.sh +++ b/scripts/patch_e2e.sh @@ -76,7 +76,7 @@ while IFS= read line; do echo "✅ 'hello shorebird' was printed" break fi -done < <(adb logcat -T '10.0' | grep flutter) +done < <(adb logcat -T '10.0') echo "✅ All tests passed!" exit 0