From e9eeafb8715684e3b2ba80e7a55c4885af1cf27f Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Thu, 16 Dec 2021 15:23:05 -0800 Subject: [PATCH] Fix incorrect test names (flutter/engine#30385) There were two tests in the FlutterWindowsView tests that were tagged as FlutterWindowsEngine tests. This corrects those. --- .../shell/platform/windows/flutter_windows_view_unittests.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/shell/platform/windows/flutter_windows_view_unittests.cc b/engine/src/flutter/shell/platform/windows/flutter_windows_view_unittests.cc index d794ff0199..1df7b193aa 100644 --- a/engine/src/flutter/shell/platform/windows/flutter_windows_view_unittests.cc +++ b/engine/src/flutter/shell/platform/windows/flutter_windows_view_unittests.cc @@ -153,7 +153,7 @@ TEST(FlutterWindowsViewTest, EnableSemantics) { EXPECT_TRUE(semantics_enabled); } -TEST(FlutterWindowsEngine, AddSemanticsNodeUpdate) { +TEST(FlutterWindowsView, AddSemanticsNodeUpdate) { std::unique_ptr engine = GetTestEngine(); EngineModifier modifier(engine.get()); modifier.embedder_api().UpdateSemanticsEnabled = @@ -228,7 +228,7 @@ TEST(FlutterWindowsEngine, AddSemanticsNodeUpdate) { // node3 // // node0 and node2 are grouping nodes. node1 and node2 are static text nodes. -TEST(FlutterWindowsEngine, AddSemanticsNodeUpdateWithChildren) { +TEST(FlutterWindowsView, AddSemanticsNodeUpdateWithChildren) { std::unique_ptr engine = GetTestEngine(); EngineModifier modifier(engine.get()); modifier.embedder_api().UpdateSemanticsEnabled =