diff --git a/test/tests/Item.js b/test/tests/Item.js index c13a315c..bce28690 100644 --- a/test/tests/Item.js +++ b/test/tests/Item.js @@ -536,14 +536,14 @@ test('Cloning a linked size', function() { }); test('Item#type', function() { - equals(new Group().type, 'group'); - equals(new Path().type, 'path'); - equals(new CompoundPath().type, 'compoundpath'); + equals(new Group().type, 'Group'); + equals(new Path().type, 'Path'); + equals(new CompoundPath().type, 'CompoundPath'); var canvas = document.createElement('canvas'); - equals(new Raster(canvas).type, 'raster'); - equals(new PlacedSymbol().type, 'placedsymbol'); - equals(new PointText().type, 'pointtext'); + equals(new Raster(canvas).type, 'Raster'); + equals(new PlacedSymbol().type, 'PlacedSymbol'); + equals(new PointText().type, 'PointText'); }); test('Item#isInserted', function() {