Skip to content

Commit

Permalink
Fix mistake in on-screen test output
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeneliason committed Apr 15, 2023
1 parent b622135 commit a86091c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ local returnValue = luaunit.LuaUnit.run(table.unpack(luaunit_args))

gfx.fillRect(0, 106, 400, 24)
gfx.setImageDrawMode(playdate.graphics.kDrawModeInverted)
gfx.drawTextAligned(returnValue and "*SUCCESS*" or "*FAIL*", 200, 110, cnt)
gfx.drawTextAligned(returnValue == 0 and "*SUCCESS*" or "*FAIL*", 200, 110, cnt)

0 comments on commit a86091c

Please sign in to comment.