diff --git a/ext/ghoul b/ext/ghoul index dfb0af83c6..928d89a59b 160000 --- a/ext/ghoul +++ b/ext/ghoul @@ -1 +1 @@ -Subproject commit dfb0af83c6d7eef000a08a2ad01d4a052b49a667 +Subproject commit 928d89a59b192e5af2c81989a55eeb6b8f96bfdb diff --git a/tests/property/test_property_listproperties.cpp b/tests/property/test_property_listproperties.cpp index a7c0161060..4040a8aec2 100644 --- a/tests/property/test_property_listproperties.cpp +++ b/tests/property/test_property_listproperties.cpp @@ -110,7 +110,7 @@ TEST_CASE("StringListProperty: Get Lua Value", "[stringlistproperty]") { p.getLuaValue(L); REQUIRE(ghoul::lua::luaValueToString(L, 1) == - "{ 1.000000 = a, 2.000000 = b, 3.000000 = c }" + "{ [1] = \"a\", [2] = \"b\", [3] = \"c\" }" ); } @@ -221,7 +221,7 @@ TEST_CASE("IntListProperty: Get Lua Value", "[intlistproperty]") { p.getLuaValue(L); REQUIRE(ghoul::lua::luaValueToString(L, 1) == - "{ 1.000000 = 1.000000, 2.000000 = 2.000000, 3.000000 = 3.000000 }" + "{ [1] = 1.000000, [2] = 2.000000, [3] = 3.000000 }" ); } @@ -332,7 +332,7 @@ TEST_CASE("DoubleListProperty: Get Lua Value", "[doublelistproperty]") { p.getLuaValue(L); REQUIRE(ghoul::lua::luaValueToString(L, 1) == - "{ 1.000000 = 1.000000, 2.000000 = 2.000000, 3.000000 = 3.000000 }" + "{ [1] = 1.000000, [2] = 2.000000, [3] = 3.000000 }" ); }