From a4256062a01eee2a40f2ac67deb675cc9b5bb3c9 Mon Sep 17 00:00:00 2001 From: Eryn Lynn Date: Mon, 24 Aug 2020 13:25:09 -0400 Subject: [PATCH] Fix casing --- lib/init.spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/init.spec.lua b/lib/init.spec.lua index f27fd77..e2c611d 100644 --- a/lib/init.spec.lua +++ b/lib/init.spec.lua @@ -190,7 +190,7 @@ return function() end) describe("Promise.delay", function() - it("Should schedule promise resolution", function() + it("should schedule promise resolution", function() local promise = Promise.delay(1) expect(promise:getStatus()).to.equal(Promise.Status.Started) @@ -202,7 +202,7 @@ return function() expect(promise:getStatus()).to.equal(Promise.Status.Resolved) end) - it("Should allow for delays to be cancelled", function() + it("should allow for delays to be cancelled", function() local promise = Promise.delay(2) Promise.delay(1):andThen(function()