diff --git a/test/tests/Item_Bounds.js b/test/tests/Item_Bounds.js index f6953623..57f609ff 100644 --- a/test/tests/Item_Bounds.js +++ b/test/tests/Item_Bounds.js @@ -57,5 +57,5 @@ test('path.bounds when contained in a transformed group', function() { var group = new Group([path]); compareRectangles(path.bounds, { x: 10, y: 10, width: 50, height: 50 }, 'path.bounds before group translation'); group.translate(100, 100); - compareRectangles(path.bounds, { x: 110, y: 110, width: 50, height: 50 }, 'path.bounds after group translation'); + compareRectangles(path.bounds, { x: 10, y: 10, width: 50, height: 50 }, 'path.bounds after group translation'); }); \ No newline at end of file