mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Do not access internal properties from tests.
This commit is contained in:
parent
eb44238f53
commit
8b9f9ea6db
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ test('Path#clone()', function() {
|
||||||
path.locked = true;
|
path.locked = true;
|
||||||
path.visible = false;
|
path.visible = false;
|
||||||
path.blendMode = 'blend';
|
path.blendMode = 'blend';
|
||||||
path._clipMask = true;
|
path.clipMask = true;
|
||||||
path.selected = true;
|
path.selected = true;
|
||||||
cloneAndCompare(path);
|
cloneAndCompare(path);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue