diff --git a/tests/src/App/ComplexGeoData.cpp b/tests/src/App/ComplexGeoData.cpp index 6eab5175d9..4c344495ea 100644 --- a/tests/src/App/ComplexGeoData.cpp +++ b/tests/src/App/ComplexGeoData.cpp @@ -3,7 +3,6 @@ #include "gtest/gtest.h" #include -#include #include #include @@ -318,7 +317,8 @@ TEST_F(ComplexGeoDataTest, elementTypeCharMappedNameWithPrefix) // NOLINT int size {0}; Data::MappedName mappedName; Data::IndexedName indexedName; - auto name = fmt::format("{}TestMappedElement:;", Data::ELEMENT_MAP_PREFIX); + std::string name(Data::ELEMENT_MAP_PREFIX); + name.append("TestMappedElement:;"); std::tie(indexedName, mappedName) = createMappedName(name); // Act diff --git a/tests/src/Base/Reader.cpp b/tests/src/Base/Reader.cpp index 04153c68bd..7ff4f17585 100644 --- a/tests/src/Base/Reader.cpp +++ b/tests/src/Base/Reader.cpp @@ -10,7 +10,6 @@ #include "Base/Reader.h" #include #include -#include #include namespace fs = boost::filesystem;