From 2b88b7b20ab44b21a181918f455a3bbffd0a95b1 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sat, 9 May 2026 11:10:34 +0100 Subject: [PATCH] Ignore Uninteresting test warnings during test teardown (#26161) --- tests/test_common/test_fixture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_common/test_fixture.cpp b/tests/test_common/test_fixture.cpp index 00084721d6c..ed57d9e109e 100644 --- a/tests/test_common/test_fixture.cpp +++ b/tests/test_common/test_fixture.cpp @@ -65,7 +65,7 @@ TestFixture::TestFixture() { TestFixture::~TestFixture() { test_logger.info() << "test fixture clean-up start." << std::endl; - TestDriver driver; + ::testing::NiceMock driver; /* Reset keyboard state. */ clear_all_keys();