summaryrefslogtreecommitdiffstats
path: root/bench/tests/10000-pathArrays.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-04-17 17:13:50 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-04-17 17:13:50 +0200
commit230d2a2fa4ab2d73ddbeb4894b1620dc779d3a96 (patch)
tree7fc148bd1bb2cb01a1ec83d3d2603c62a08bf7b6 /bench/tests/10000-pathArrays.js
parent5058edee3b479e23462a7021648f1dfd3e351b2f (diff)
downloadsvg.js-230d2a2fa4ab2d73ddbeb4894b1620dc779d3a96.tar.gz
svg.js-230d2a2fa4ab2d73ddbeb4894b1620dc779d3a96.zip
bump 2.5.32.5.3
Diffstat (limited to 'bench/tests/10000-pathArrays.js')
-rw-r--r--bench/tests/10000-pathArrays.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/tests/10000-pathArrays.js b/bench/tests/10000-pathArrays.js
index 871d022..a4c0fdc 100644
--- a/bench/tests/10000-pathArrays.js
+++ b/bench/tests/10000-pathArrays.js
@@ -5,17 +5,17 @@ SVG.bench.describe('Generate 10000 pathArrays', function(bench) {
var data3 = 'M10 10-45-30.5.5 .89L2e-2.5.5.5-.5C.5.5.5.5.5.5L-3-4z'
- 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++)
new SVG.PathArray(data)
})
- bench.test('using SVG.js v2.5.2 more data', function() {
+ bench.test('using SVG.js v2.5.3 more data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data2)
})
- bench.test('using SVG.js v2.5.2 complicated data', function() {
+ bench.test('using SVG.js v2.5.3 complicated data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data3)
})