Do not access internal properties from tests.

This commit is contained in:
Jürg Lehni 2011-05-21 14:28:31 +01:00
parent eb44238f53
commit 8b9f9ea6db

View file

@ -17,7 +17,7 @@ test('Path#clone()', function() {
path.locked = true;
path.visible = false;
path.blendMode = 'blend';
path._clipMask = true;
path.clipMask = true;
path.selected = true;
cloneAndCompare(path);
});