diff options
Diffstat (limited to 'bench/tests/10000-circles.js')
-rw-r--r-- | bench/tests/10000-circles.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/tests/10000-circles.js b/bench/tests/10000-circles.js index 28fd609..f090281 100644 --- a/bench/tests/10000-circles.js +++ b/bench/tests/10000-circles.js @@ -1,5 +1,5 @@ SVG.bench.describe('Generate 10000 circles', function(bench) { - bench.test('using SVG.js v2.5.2', function() { + bench.test('using SVG.js v2.5.3', function() { for (var i = 0; i < 10000; i++) bench.draw.circle(100,100) }) @@ -18,7 +18,7 @@ SVG.bench.describe('Generate 10000 circles', function(bench) { }) SVG.bench.describe('Generate 10000 circles with fill', function(bench) { - bench.test('using SVG.js v2.5.2', function() { + bench.test('using SVG.js v2.5.3', function() { for (var i = 0; i < 10000; i++) bench.draw.circle(100,100).fill('#f06') }) |