From 93a97c7446bf54342d2fe99c6931a3a526be20ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sun, 13 Apr 2014 18:12:40 +0200 Subject: [PATCH] Reflect recent change in Item#hitTest() options. --- test/tests/HitResult.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/HitResult.js b/test/tests/HitResult.js index e0be2a52..ad24f4c8 100644 --- a/test/tests/HitResult.js +++ b/test/tests/HitResult.js @@ -673,7 +673,7 @@ test('Hit testing compound-paths', function() { // the center (the one that cuts out the hole) equals(function() { var result = paper.project.hitTest(center, { - type: Path, + class: Path, fill: true }); return result && result.item === path2;