cld2: unit-test fix

Fix inverted HAVE_CLD2 test
This commit is contained in:
Dirk-Jan C. Binnema
2026-07-23 21:09:35 +03:00
committed by Seth Ladygo
parent ca881a6e83
commit 51a2bc5f60

View File

@ -76,7 +76,7 @@ test_lang_detector()
for (auto&& test: tests) {
const auto res = detect_language(std::get<0>(test));
#if HAVE_CLD2
#if !HAVE_CLD2
g_assert_false(!!res);
#else
g_assert_true(!!res);