redundant check

This commit is contained in:
Kartik K. Agaram 2022-06-12 07:35:52 -07:00
parent e4e12c77ad
commit e8ff9f285f
1 changed files with 2 additions and 4 deletions

View File

@ -256,10 +256,8 @@ function App.run_tests()
end
table.sort(sorted_names)
for _,name in ipairs(sorted_names) do
if name:find('test_') == 1 then
App.initialize_for_test()
_G[name]()
end
App.initialize_for_test()
_G[name]()
end
print()
end