From ca881a6e83d5fd920aeac12ea56ba3785a42ceb1 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 23 Jul 2026 20:57:33 +0300 Subject: [PATCH] cld2: fix macos unit-test on ci --- lib/utils/mu-lang-detector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/mu-lang-detector.cc b/lib/utils/mu-lang-detector.cc index 1145510f..1fa25a60 100644 --- a/lib/utils/mu-lang-detector.cc +++ b/lib/utils/mu-lang-detector.cc @@ -76,7 +76,7 @@ test_lang_detector() for (auto&& test: tests) { const auto res = detect_language(std::get<0>(test)); -#ifndef HAVE_CLD2 +#if HAVE_CLD2 g_assert_false(!!res); #else g_assert_true(!!res);