From ded73129ad8810a067c9bc4185967d6f586cd8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 7 Mar 2011 00:01:26 +0000 Subject: [PATCH] Minor clean-up. --- test/tests/PlacedSymbol.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/PlacedSymbol.js b/test/tests/PlacedSymbol.js index b1c0a254..99d8592b 100644 --- a/test/tests/PlacedSymbol.js +++ b/test/tests/PlacedSymbol.js @@ -11,13 +11,13 @@ test('placedSymbol bounds', function() { 'Path initial bounds.'); var symbol = new Symbol(path); var placedSymbol = new PlacedSymbol(symbol); - + // These tests currently fail because we haven't implemented // Item#strokeBounds yet. compareRectangles(placedSymbol.bounds, new Rectangle(-50.5, -50.5, 101, 101), 'PlacedSymbol initial bounds.'); - + placedSymbol.scale(1, 0.5); compareRectangles(placedSymbol.bounds, { x: -50.5, y: -25.25, width: 101, height: 50.5 },