about summary refs log tree commit diff stats
path: root/app.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-04-11 21:33:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-04-11 21:33:33 -0700
commit658f96667b360ed5f7711ecd81a01635f0254837 (patch)
tree1d65a33b2d17e377d96f7d480114b74a294d3b4b /app.lua
parent4049176dfbcaef2919d761d9f19ac100b86a4468 (diff)
downloadlines.love-658f96667b360ed5f7711ecd81a01635f0254837.tar.gz
primitives for writing tests
Diffstat (limited to 'app.lua')
-rw-r--r--app.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.lua b/app.lua
index 53a133f..b41b1ad 100644
--- a/app.lua
+++ b/app.lua
@@ -145,7 +145,7 @@ function App.run_tests_and_initialize()
 end
 
 function App.initialize_for_test()
-  App.screen.init({width=100, height=50})
+  App.screen.init{width=100, height=50}
   App.screen.contents = {}  -- clear screen
   App.filesystem = {}
   App.fake_keys_pressed = {}