From 8b9f9ea6db84465ee72ff5820046851037ef457a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 21 May 2011 14:28:31 +0100 Subject: [PATCH] Do not access internal properties from tests. --- test/tests/Item_Cloning.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/Item_Cloning.js b/test/tests/Item_Cloning.js index c16b6670..aa8a357d 100644 --- a/test/tests/Item_Cloning.js +++ b/test/tests/Item_Cloning.js @@ -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); });