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 15:39:16 +04:00 committed by GitHub
parent a45de66d22
commit e2ba19535d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);