mirror of
https://github.com/hyprwm/Hyprland
synced 2026-05-06 18:58:02 +02:00
tests: fix ConfigLuaValueTypes - boolBadType test, 0 and 1 are allowed integer values for bool type (#14240)
This commit is contained in:
parent
a45de66d22
commit
e2ba19535d
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue