From 8909216cc0893ddd0c2490e30a3425f4e1f9e290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 20 Jun 2011 18:55:08 +0100 Subject: [PATCH] Remove use of characterStyle / paragraphStyle where not necessary. --- 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 f4fe028f..80bfe7d8 100644 --- a/test/tests/Item_Cloning.js +++ b/test/tests/Item_Cloning.js @@ -97,7 +97,7 @@ test('PointText#clone()', function() { font: 'serif', fontSize: 20 }; - pointText.paragraphStyle.justification = 'center'; + pointText.justification = 'center'; cloneAndCompare(pointText); });