Fixed tests, removed debug code

This commit is contained in:
Wires77
2021-07-19 05:03:15 -05:00
parent 96aab7d9f7
commit cf755fcc00
7 changed files with 232 additions and 241 deletions

View File

@@ -34,7 +34,7 @@ function buildTable(tableName, values, string)
elseif type(value) == "string" then
string = string .. "[\"" .. key .. "\"] = \"" .. value .. "\",\n"
else
string = string .. "[\"" .. key .. "\"] = " .. value .. ",\n"
string = string .. "[\"" .. key .. "\"] = " .. round(value, 4) .. ",\n"
end
end
string = string .. "}\n"