diff options
Diffstat (limited to 'spec/spec/adopter.js')
-rw-r--r-- | spec/spec/adopter.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/spec/adopter.js b/spec/spec/adopter.js index 38d55f4..6beb63b 100644 --- a/spec/spec/adopter.js +++ b/spec/spec/adopter.js @@ -71,11 +71,9 @@ describe('Adopter', function() { }) describe('with node that has no matching svg.js class', function() { - it('wraps the node in the base SVG.Element class', function() { + it('wraps the node in the Dom class', function() { var desc = SVG('#inlineSVG').find('desc')[0] - expect(desc instanceof SVG.Element).toBeTruthy() + expect(desc instanceof SVG.Dom).toBeTruthy() }) }) - - }) |