diff --git a/test/immediate.ts b/test/immediate.ts index 3a24565..6269c72 100644 --- a/test/immediate.ts +++ b/test/immediate.ts @@ -37,11 +37,6 @@ describe('Immediate Execution -', function () { it('Aggregate() - Default Value [String]', function () { assert.equal("123", Linq.From([1, 2, 3]).Aggregate("", (c, n) => c.toString() + n.toString())); }); - - it('Aggregate() - Default Value [Number]', function () { - assert.equal("0123", Linq.From(["1", "2", "3"]).Aggregate(0, (c, n) => c.toString() + n.toString())); - }); - // All