From ed8032af0f1ffa1e2ef4a295d784c652dc08271e Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Sat, 21 May 2011 18:45:41 +0200 Subject: [PATCH] Tests: Item_Cloning: rename blendModes. --- test/tests/Item_Cloning.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/Item_Cloning.js b/test/tests/Item_Cloning.js index d3537663..bc4a6a95 100644 --- a/test/tests/Item_Cloning.js +++ b/test/tests/Item_Cloning.js @@ -16,7 +16,7 @@ test('Path#clone()', function() { path.opacity = 0.5; path.locked = true; path.visible = false; - path.blendMode = 'blend'; + path.blendMode = 'multiply'; path.clipMask = true; path.selected = true; cloneAndCompare(path); @@ -115,7 +115,7 @@ test('Raster#clone()', function() { raster.opacity = 0.5; raster.locked = true; raster.visible = false; - raster.blendMode = 'blend'; + raster.blendMode = 'multiply'; raster.rotate(20).translate(100); cloneAndCompare(raster); }); \ No newline at end of file