diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2016-10-04 15:12:31 +0200 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2016-10-04 15:12:31 +0200 |
commit | fd13630c59e1cbdca7183a11d2beb4481de12c6e (patch) | |
tree | 42cb2f4e459f1b5045952f56e3eacee853f1f82d | |
parent | cc1c484cfff582785d491e9eabea56cba0d165a7 (diff) | |
download | svg.js-fd13630c59e1cbdca7183a11d2beb4481de12c6e.tar.gz svg.js-fd13630c59e1cbdca7183a11d2beb4481de12c6e.zip |
fix missing ) which caused a subtle syntax error
-rw-r--r-- | spec/spec/point.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec/point.js b/spec/spec/point.js index ce28781..3431526 100644 --- a/spec/spec/point.js +++ b/spec/spec/point.js @@ -109,7 +109,7 @@ describe('Point', function() { expect(point.transform(matrox)).toEqual(new SVG.Point(5,1)) }) - } + }) describe('native()', function() { it('returns native SVGPoint', function() { |