Skip to content

Commit a425606

Browse files
committed
Fix casing
1 parent 7fc6fc9 commit a425606

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/init.spec.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ return function()
190190
end)
191191

192192
describe("Promise.delay", function()
193-
it("Should schedule promise resolution", function()
193+
it("should schedule promise resolution", function()
194194
local promise = Promise.delay(1)
195195

196196
expect(promise:getStatus()).to.equal(Promise.Status.Started)
@@ -202,7 +202,7 @@ return function()
202202
expect(promise:getStatus()).to.equal(Promise.Status.Resolved)
203203
end)
204204

205-
it("Should allow for delays to be cancelled", function()
205+
it("should allow for delays to be cancelled", function()
206206
local promise = Promise.delay(2)
207207

208208
Promise.delay(1):andThen(function()

0 commit comments

Comments
 (0)