]> source.dussan.org Git - svg.js.git/commitdiff
fix testcases
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Tue, 25 Apr 2017 13:15:39 +0000 (15:15 +0200)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Tue, 25 Apr 2017 13:15:39 +0000 (15:15 +0200)
spec/spec/svg.js

index 5203544313b6f34df4814ce80f493201e197727e..37fecfb24bfa9b5aa5191c514734fb2adf01d312 100644 (file)
@@ -53,7 +53,7 @@ describe('SVG', function() {
       expect(draw.rect(100,100).soft().attr('opacity')).toBe(0.2)
     })
     it('accepts and extend multiple modules at once', function() {
-      SVG.extend(SVG.Rect, SVG.Ellipse, SVG.Path, {
+      SVG.extend([SVG.Rect, SVG.Ellipse, SVG.Path], {
         soft: function() {
           return this.opacity(0.5)
         }
@@ -67,7 +67,7 @@ describe('SVG', function() {
       expect(draw.path().soft().attr('opacity')).toBe(0.5)
     })
     it('ignores non existant objects', function() {
-      SVG.extend(SVG.Rect, SVG.Bogus, {
+      SVG.extend([SVG.Rect, SVG.Bogus], {
         soft: function() {
           return this.opacity(0.3)
         }