From 92c2f61665f0e3131af117075a7696835e938c6d Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 27 Jun 2019 21:42:46 -0700 Subject: [PATCH] Remove duplicate test statement --- test/specs/helpers.math.tests.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/specs/helpers.math.tests.js b/test/specs/helpers.math.tests.js index e67c48ba0ef..c26435f65a1 100644 --- a/test/specs/helpers.math.tests.js +++ b/test/specs/helpers.math.tests.js @@ -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([]); });