diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-03-16 13:17:47 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-03-16 13:17:47 +0100 |
commit | b9bf23473e782ef16ae0d51dc840051451a3fc03 (patch) | |
tree | 7c65e318926e857fc397a8ad2882e6317d3a46dc | |
parent | 5c287c95a38f3f05921ba6e1b49e702972cc8467 (diff) | |
download | svg.js-b9bf23473e782ef16ae0d51dc840051451a3fc03.tar.gz svg.js-b9bf23473e782ef16ae0d51dc840051451a3fc03.zip |
fixing test
-rw-r--r-- | spec/spec/svg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec/svg.js b/spec/spec/svg.js index 318b948..43e41d3 100644 --- a/spec/spec/svg.js +++ b/spec/spec/svg.js @@ -98,7 +98,7 @@ describe('SVG', function() { expect(SVG.parser.draw.node.nodeName).toBe('svg') }) it('hides the parser', function() { - expect(SVG.parser.draw.node.getAttribute('style')).toBe('opacity: 0; position: absolute; left: -100%; top: -100%; overflow: hidden;') + expect(SVG.parser.draw.node.getAttribute('style')).toBe('overflow: hidden; top: -100%; left: -100%; position: absolute; opacity: 0;') }) it('holds polyline and path', function() { expect(SVG.select('polyline', SVG.parser.draw.node).first().type).toBe('polyline') |