Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
YetAnotherClown committed Aug 26, 2024
1 parent 07efa8e commit 7c609df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/__tests__/Route.test.luau
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@ describe("Route", function()
)
local bridge = MockedBridge.new(context, player)

local function beginFrame()
local function beginFrameFn()
bridge:beginFrame()

for _, route in routes do
route:_updateSnapshot(bridge)
end
end

local function endFrame()
local function endFrameFn()
for _, route in routes do
route:_queuePackets(bridge)
end

bridge:endFrame()
end

return beginFrame, endFrame
return beginFrameFn, endFrameFn
end

-- Setup server
Expand Down

0 comments on commit 7c609df

Please sign in to comment.