aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2016-10-20 20:28:31 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2016-10-20 20:28:31 +0200
commit0667187ea61e5b1005e2dedcebe64a915a70fc24 (patch)
tree940ed945f9cbe5232d14893ec284c19ee85db2fd
parent9bc6c8ec0ccb904ae571f933ba639de14308e779 (diff)
downloadsvg.js-0667187ea61e5b1005e2dedcebe64a915a70fc24.tar.gz
svg.js-0667187ea61e5b1005e2dedcebe64a915a70fc24.zip
correct naming of test
-rw-r--r--spec/spec/array.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec/array.js b/spec/spec/array.js
index f494925..01927d8 100644
--- a/spec/spec/array.js
+++ b/spec/spec/array.js
@@ -38,7 +38,7 @@ describe('PointArray', function () {
expect(array + '').toBe('221.08,191.79 0.46,191.79 0.46,63.92 63.8,0.46 284.46,0.46 284.46,128.37 221.08,191.79')
})
- it('parses points with space delimitered x/y coordinates', function() {
+ it('parses points with redundant spaces at the end', function() {
var array = new SVG.PointArray('2176.6,1708.8 2176.4,1755.8 2245.8,1801.5 2297,1787.8 ')
expect(array + '').toBe('2176.6,1708.8 2176.4,1755.8 2245.8,1801.5 2297,1787.8')