diff --git a/tests/js/spec/formatNumber.js b/tests/js/spec/formatNumber.js index bfa1dd93f76ccd..abbfdd0a389b9b 100644 --- a/tests/js/spec/formatNumber.js +++ b/tests/js/spec/formatNumber.js @@ -3,7 +3,7 @@ describe("formatNumber", function() { expect(app.formatNumber(1134134134)).toBe('1.1b'); }); - it("handles billions", function() { + it("handles millions", function() { expect(app.formatNumber(1234134)).toBe('1.2m'); }); @@ -14,4 +14,4 @@ describe("formatNumber", function() { it("doesnt format small numbers", function() { expect(app.formatNumber(15)).toBe('15'); }); -}); \ No newline at end of file +});