Browse Source

Ignore Uninteresting test warnings during test teardown (#26161)

Joel Challis 2 months ago
parent
commit
2b88b7b20a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test_common/test_fixture.cpp

+ 1 - 1
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<TestDriver> driver;
 
     /* Reset keyboard state. */
     clear_all_keys();