Skip to content

Commit

Permalink
Remove duplicate test statement
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Jun 28, 2019
1 parent f25b47e commit 92c2f61
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/specs/helpers.math.tests.js
Expand Up @@ -10,7 +10,6 @@ describe('Chart.helpers.math', function() {
expect(factorize(24)).toEqual([1, 2, 3, 4, 6, 8, 12]);
expect(factorize(12)).toEqual([1, 2, 3, 4, 6]);
expect(factorize(4)).toEqual([1, 2]);
expect(factorize(4)).toEqual([1, 2]);
expect(factorize(-1)).toEqual([]);
expect(factorize(2.76)).toEqual([]);
});
Expand Down

0 comments on commit 92c2f61

Please sign in to comment.