diff --git a/src/Array/Mean.spec.lua b/src/Array/Mean.spec.lua index 8acad9c..d92ca5f 100644 --- a/src/Array/Mean.spec.lua +++ b/src/Array/Mean.spec.lua @@ -1,5 +1,5 @@ return function() - --[[ local Mean = require(script.Parent.Mean) + local Mean = require(script.Parent.Mean) describe("Array/Mean", function() it("should return 0 for no elements", function() @@ -17,5 +17,5 @@ return function() it("should return the mean of a multiple elements with a range", function() expect(Mean({1, 2, 3, 4}, 2, 4)).to.equal(3) end) - end) ]] + end) end \ No newline at end of file diff --git a/src/Array/Percentile.spec.lua b/src/Array/Percentile.spec.lua index fc9da02..dd01498 100644 --- a/src/Array/Percentile.spec.lua +++ b/src/Array/Percentile.spec.lua @@ -1,5 +1,5 @@ return function() - --[[ local Percentile = require(script.Parent.Percentile) + local Percentile = require(script.Parent.Percentile) describe("Array/Percentile", function() it("should return nil for no elements", function() @@ -17,5 +17,5 @@ return function() it("should return the last element for 100th percentile", function() expect(Percentile({1, 2, 3, 4, 5}, 1)).to.equal(5) end) - end) ]] + end) end \ No newline at end of file diff --git a/src/Array/Product.spec.lua b/src/Array/Product.spec.lua index 89ff033..1d21813 100644 --- a/src/Array/Product.spec.lua +++ b/src/Array/Product.spec.lua @@ -1,5 +1,5 @@ return function() - --[[ local Product = require(script.Parent.Product) + local Product = require(script.Parent.Product) local function Check(Test, Index, Expected) local Pairing = Test[Index] @@ -58,5 +58,5 @@ return function() Check(Test, 7, {2, 2, 1}) Check(Test, 8, {2, 2, 2}) end) - end) ]] + end) end \ No newline at end of file diff --git a/src/Array/Range.spec.lua b/src/Array/Range.spec.lua index 5161602..9226ae1 100644 --- a/src/Array/Range.spec.lua +++ b/src/Array/Range.spec.lua @@ -1,5 +1,5 @@ return function() - --[[ local Range = require(script.Parent.Range) + local Range = require(script.Parent.Range) describe("Array/Range", function() it("should return a single element list for a range of 1", function() @@ -22,5 +22,5 @@ return function() Range(2, 1) end).to.throw() end) - end) ]] + end) end \ No newline at end of file diff --git a/src/Array/Sum.spec.lua b/src/Array/Sum.spec.lua index 723add6..b494170 100644 --- a/src/Array/Sum.spec.lua +++ b/src/Array/Sum.spec.lua @@ -1,5 +1,5 @@ return function() - --[[ local Sum = require(script.Parent.Sum) + local Sum = require(script.Parent.Sum) describe("Array/Sum", function() it("should return the sum of a single element for From & To being equal", function() @@ -13,5 +13,5 @@ return function() it("should return the sum of a subset of multiple elements where From is greater than To", function() expect(Sum({1, 2, 3, 4}, 3, 1)).to.equal(6) end) - end) ]] + end) end \ No newline at end of file