Testing why automated tests don't work again

This commit is contained in:
Wires77
2021-06-28 13:04:29 -05:00
parent 91d5808a35
commit 96aab7d9f7
10 changed files with 8243 additions and 5 deletions

View File

@@ -31,6 +31,8 @@ function buildTable(tableName, values, string)
buildTable(key, value, string)
elseif type(value) == "boolean" then
string = string .. "[\"" .. key .. "\"] = " .. (value and "true" or "false") .. ",\n"
elseif type(value) == "string" then
string = string .. "[\"" .. key .. "\"] = \"" .. value .. "\",\n"
else
string = string .. "[\"" .. key .. "\"] = " .. value .. ",\n"
end