about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-12 07:35:52 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-12 07:35:52 -0700
commite8ff9f285fe8630e74de01d9f9a6d9a833b4c78b (patch)
tree997df41adea1a3fff0fb282b6e7a13d816867689
parente4e12c77ad2ade64563c97471852b6822766b39e (diff)
downloadtext.love-e8ff9f285fe8630e74de01d9f9a6d9a833b4c78b.tar.gz
redundant check
-rw-r--r--app.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/app.lua b/app.lua
index b00506b..efc2a9a 100644
--- a/app.lua
+++ b/app.lua
@@ -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