Skip to content

Commit

Permalink
Update immediate.ts
Browse files Browse the repository at this point in the history
Remove Number test case. Only applicable to browserfied code.
  • Loading branch information
gerneio authored Jan 12, 2019
1 parent 764190c commit 0369611
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/immediate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0369611

Please sign in to comment.