From 63c1761ed9462ee58d7577298af48bca6b6c05fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E8=81=AA?= Date: Sat, 6 Sep 2025 16:07:06 +0800 Subject: [PATCH] =?UTF-8?q?TDD=E4=B8=80=E8=87=B4=E6=80=A7=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 赵聪 --- .../unittest/event_distribution/scene_input_manager_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window_scene/test/unittest/event_distribution/scene_input_manager_test.cpp b/window_scene/test/unittest/event_distribution/scene_input_manager_test.cpp index 1cf3c53dd0..84b5cc4ac9 100644 --- a/window_scene/test/unittest/event_distribution/scene_input_manager_test.cpp +++ b/window_scene/test/unittest/event_distribution/scene_input_manager_test.cpp @@ -396,7 +396,7 @@ HWTEST_F(SceneInputManagerTest, FlushDisplayInfoToMMI, TestSize.Level0) SceneInputManager::GetInstance().FlushDisplayInfoToMMI(std::move(windowInfoList), std::move(pixelMapList), true); SceneInputManager::GetInstance().FlushDisplayInfoToMMI(std::move(windowInfoList), std::move(pixelMapList)); usleep(WAIT_SYNC_IN_NS); - EXPECT_TRUE(logMsg.find("sceneSessionDirty_ is nullptr") != std::string::npos); + EXPECT_FALSE(logMsg.find("sceneSessionDirty_ is nullptr") != std::string::npos); logMsg.clear(); auto preEventHandler = SceneInputManager::GetInstance().eventHandler_; -- Gitee