From a40032496f81ee85bca3588e136d10887488c85c Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Mon, 8 Nov 2010 11:35:18 -0800 Subject: [PATCH] Adjusting a test --- test/public/tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/public/tests.js b/test/public/tests.js index f8aa919..216cb20 100644 --- a/test/public/tests.js +++ b/test/public/tests.js @@ -1231,7 +1231,7 @@ tests['shadow integration'] = function(ctx){ // skyblue box ctx.fillStyle = "skyblue"; - ctx.fillRect(105,100+50, 100,100); + ctx.fillRect(105,101, 100,100); // radial grad oval ctx.beginPath(); @@ -1241,7 +1241,7 @@ tests['shadow integration'] = function(ctx){ // gold oval ctx.beginPath(); - ctx.arc(50, 150+50, 50, 0, Math.PI*2, false); + ctx.arc(50, 151, 50, 0, Math.PI*2, false); ctx.fillStyle = "gold"; ctx.fill();