Skip to content

Commit

Permalink
fix this
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtleP committed Mar 21, 2024
1 parent d3b4f15 commit fde8cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/TestMethod.lua
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ TestMethod = {
-- @param {number} - the minimum Lua version to check against
-- @return {boolean} - returns true if the current Lua version is at least the given version
isAtLeastLuaVersion = function(self, version)
return version >= love.test.lua_version
return love.test.lua_version >= version
end,

-- @method - TestMethod:isLuaJITEnabled()
Expand Down

0 comments on commit fde8cf6

Please sign in to comment.