aboutsummaryrefslogtreecommitdiffstats
path: root/bench/tests/10000-pathArrays.js
diff options
context:
space:
mode:
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 b30229a..871d022 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.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data)
})
- bench.test('using SVG.js v2.5.1 more data', function() {
+ bench.test('using SVG.js v2.5.2 more data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data2)
})
- bench.test('using SVG.js v2.5.1 complicated data', function() {
+ bench.test('using SVG.js v2.5.2 complicated data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data3)
})