test/unit: clean up according to luacheck

This commit is contained in:
Marco Hinz
2015-11-17 15:49:12 +01:00
parent 4afd386276
commit 32ecd75a16
13 changed files with 97 additions and 125 deletions

View File

@@ -35,7 +35,7 @@ end
-- adds the argument table to this Set
function Set:union_table(t)
for k, v in pairs(t) do
for _, v in pairs(t) do
self:add(v)
end
end