diff options
Diffstat (limited to 'test/utils/test_env.hpp')
-rw-r--r-- | test/utils/test_env.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/test_env.hpp b/test/utils/test_env.hpp index 30eba26c..fc6ac739 100644 --- a/test/utils/test_env.hpp +++ b/test/utils/test_env.hpp @@ -23,7 +23,7 @@ #include <string> #include "src/buildtool/auth/authentication.hpp" -#include "src/buildtool/compatibility/compatibility.hpp" +#include "src/buildtool/common/protocol_traits.hpp" #include "test/utils/logging/log_config.hpp" [[nodiscard]] static inline auto ReadPlatformPropertiesFromEnv() @@ -43,7 +43,7 @@ static inline void ReadCompatibilityFromEnv() { auto* compatible = std::getenv("COMPATIBLE"); if (compatible != nullptr) { - Compatibility::SetCompatible(); + ProtocolTraits::Instance().SetCompatible(); } } |