From 045fb9989cdc4b888691b42acdf7dd4891704b1e Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Fri, 7 Feb 2025 15:17:06 -0800 Subject: [PATCH] Make sure to opt hcpp tests into using hcpp (#162906) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤦 --- dev/bots/suite_runners/run_android_engine_tests.dart | 4 ++-- .../android_engine_test/lib/hcpp/platform_view_main.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/bots/suite_runners/run_android_engine_tests.dart b/dev/bots/suite_runners/run_android_engine_tests.dart index ca18c5f21a..0842e718be 100644 --- a/dev/bots/suite_runners/run_android_engine_tests.dart +++ b/dev/bots/suite_runners/run_android_engine_tests.dart @@ -127,9 +127,9 @@ Future runAndroidEngineTests({required ImpellerBackend impellerBackend}) a } const String kSurfaceControlMetadataDisabled = - ''; + ''; const String kSurfaceControlMetadataEnabled = - ''; + ''; String _impellerBackendMetadata({required String value}) { return ''; diff --git a/dev/integration_tests/android_engine_test/lib/hcpp/platform_view_main.dart b/dev/integration_tests/android_engine_test/lib/hcpp/platform_view_main.dart index 6f23f62b6f..c941d4427c 100644 --- a/dev/integration_tests/android_engine_test/lib/hcpp/platform_view_main.dart +++ b/dev/integration_tests/android_engine_test/lib/hcpp/platform_view_main.dart @@ -25,7 +25,7 @@ final class MainApp extends StatelessWidget { const MainApp({super.key}); // This should appear as the yellow line over a blue box. The - // red box should not be visible unless the platform view has not loaded yet. + // green box should not be visible unless the platform view has not loaded yet. @override Widget build(BuildContext context) { return const MaterialApp( @@ -33,7 +33,7 @@ final class MainApp extends StatelessWidget { home: Stack( alignment: AlignmentDirectional.center, children: [ - SizedBox(width: 190, height: 190, child: ColoredBox(color: Colors.red)), + SizedBox(width: 190, height: 190, child: ColoredBox(color: Colors.green)), SizedBox( width: 200, height: 200,