summaryrefslogtreecommitdiffstats
path: root/bench/tests/10000-circles.js
diff options
context:
space:
mode:
authordotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 18:57:32 +0200
committerdotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 18:57:32 +0200
commitae7b087db03e330bef21f026a652759d9bd7f57e (patch)
tree4b00fcba1713a691e3299a0089f227a5835597bc /bench/tests/10000-circles.js
parent117b7fbe8db0bbbda7fc7c951d7d83005e1a669b (diff)
downloadsvg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.tar.gz
svg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.zip
change benchmark svg.js identifier to 2.5.2
Diffstat (limited to 'bench/tests/10000-circles.js')
-rw-r--r--bench/tests/10000-circles.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/tests/10000-circles.js b/bench/tests/10000-circles.js
index 85dadb2..28fd609 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.1', function() {
+ bench.test('using SVG.js v2.5.2', 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.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.circle(100,100).fill('#f06')
})