diff options
author | wout <wout@mick-wout.com> | 2017-04-07 20:20:02 +0200 |
---|---|---|
committer | wout <wout@mick-wout.com> | 2017-04-07 20:20:02 +0200 |
commit | 270874248df9a034b24d49d8db00cba6529e7f4b (patch) | |
tree | 064381f2819a3b2289cc2c29383ccadae191d9cd /bench/tests/10000-circles.js | |
parent | 5e9ed619e6a7ce6530b928d76a0412f364cd6bbc (diff) | |
download | svg.js-270874248df9a034b24d49d8db00cba6529e7f4b.tar.gz svg.js-270874248df9a034b24d49d8db00cba6529e7f4b.zip |
Updated CHANGELOG
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 da2a3de..85dadb2 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.4.0', function() { + bench.test('using SVG.js v2.5.1', 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.4.0', function() { + bench.test('using SVG.js v2.5.1', function() { for (var i = 0; i < 10000; i++) bench.draw.circle(100,100).fill('#f06') }) |