From 59d27db5ab3ff985804690eab7921e155139d072 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 May 2025 14:29:12 +0100 Subject: [PATCH] style: clang-tidy auto fixes (#2092) Fixes #2091. Please review and commit clang-tidy fixes. Co-authored-by: mathbunnyru <12270691+mathbunnyru@users.noreply.github.com> --- tests/integration/data/BackendFactoryTests.cpp | 2 +- tests/integration/data/cassandra/BackendTests.cpp | 2 +- .../migration/cassandra/CassandraMigrationManagerTests.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/data/BackendFactoryTests.cpp b/tests/integration/data/BackendFactoryTests.cpp index cb3e913c8..5ffc65d36 100644 --- a/tests/integration/data/BackendFactoryTests.cpp +++ b/tests/integration/data/BackendFactoryTests.cpp @@ -85,7 +85,7 @@ protected: class BackendCassandraFactoryTestWithDB : public BackendCassandraFactoryTest { public: - ~BackendCassandraFactoryTestWithDB() + ~BackendCassandraFactoryTestWithDB() override { // drop the keyspace for next test data::cassandra::Handle const handle{TestGlobals::instance().backendHost}; diff --git a/tests/integration/data/cassandra/BackendTests.cpp b/tests/integration/data/cassandra/BackendTests.cpp index ae282fdc4..8c445397c 100644 --- a/tests/integration/data/cassandra/BackendTests.cpp +++ b/tests/integration/data/cassandra/BackendTests.cpp @@ -116,7 +116,7 @@ protected: std::default_random_engine randomEngine_{0}; public: - ~BackendCassandraTest() + ~BackendCassandraTest() override { // drop the keyspace for next test Handle const handle{TestGlobals::instance().backendHost}; diff --git a/tests/integration/migration/cassandra/CassandraMigrationManagerTests.cpp b/tests/integration/migration/cassandra/CassandraMigrationManagerTests.cpp index 65c848db0..85e7335c1 100644 --- a/tests/integration/migration/cassandra/CassandraMigrationManagerTests.cpp +++ b/tests/integration/migration/cassandra/CassandraMigrationManagerTests.cpp @@ -156,7 +156,7 @@ public: testMigrationBackend_ = testBundle.second; } - ~MigrationCassandraSimpleTest() + ~MigrationCassandraSimpleTest() override { // drop the keyspace Handle const handle{TestGlobals::instance().backendHost};