Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 590e25a

Browse files
authored
Fix incorrect test names (#30385)
There were two tests in the FlutterWindowsView tests that were tagged as FlutterWindowsEngine tests. This corrects those.
1 parent d0a5547 commit 590e25a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shell/platform/windows/flutter_windows_view_unittests.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ TEST(FlutterWindowsViewTest, EnableSemantics) {
153153
EXPECT_TRUE(semantics_enabled);
154154
}
155155

156-
TEST(FlutterWindowsEngine, AddSemanticsNodeUpdate) {
156+
TEST(FlutterWindowsView, AddSemanticsNodeUpdate) {
157157
std::unique_ptr<FlutterWindowsEngine> engine = GetTestEngine();
158158
EngineModifier modifier(engine.get());
159159
modifier.embedder_api().UpdateSemanticsEnabled =
@@ -228,7 +228,7 @@ TEST(FlutterWindowsEngine, AddSemanticsNodeUpdate) {
228228
// node3
229229
//
230230
// node0 and node2 are grouping nodes. node1 and node2 are static text nodes.
231-
TEST(FlutterWindowsEngine, AddSemanticsNodeUpdateWithChildren) {
231+
TEST(FlutterWindowsView, AddSemanticsNodeUpdateWithChildren) {
232232
std::unique_ptr<FlutterWindowsEngine> engine = GetTestEngine();
233233
EngineModifier modifier(engine.get());
234234
modifier.embedder_api().UpdateSemanticsEnabled =

0 commit comments

Comments
 (0)