This is an automated email from the ASF dual-hosted git repository. cfnatali pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit deb046cd3016bcd3ccbf1feeff494ec4e6f8f2ae Author: Charles-Francois Natali <[email protected]> AuthorDate: Tue Apr 26 23:28:09 2022 +0100 Fixed some clang-tidy warnings: use override. --- src/tests/containerizer/volume_csi_isolator_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/containerizer/volume_csi_isolator_tests.cpp b/src/tests/containerizer/volume_csi_isolator_tests.cpp index 7cd03be30..18d13d438 100644 --- a/src/tests/containerizer/volume_csi_isolator_tests.cpp +++ b/src/tests/containerizer/volume_csi_isolator_tests.cpp @@ -103,7 +103,7 @@ class VolumeCSIIsolatorTest public testing::WithParamInterface<string> { public: - void SetUp() + void SetUp() override { MesosTest::SetUp(); @@ -137,7 +137,7 @@ public: return flags; } - void TearDown() + void TearDown() override { const string csiRootDir = slave::paths::getCsiRootDir(agentWorkDir);
