tests: fix ConfigLuaValueTypes - boolBadType test, 0 and 1 are allowed integer values for bool type (#14240)

This commit is contained in:
Maxim Andreev
2026-05-01 12:39:16 +01:00
committed by GitHub
parent a45de66d22
commit e2ba19535d
+1 -1
View File
@@ -89,7 +89,7 @@ TEST(ConfigLuaValueTypes, boolBadType) {
CLuaConfigBool value(false);
lua_pushinteger(L, 1);
lua_pushinteger(L, 2);
const auto err = value.parse(L);
lua_pop(L, 1);