Skip to content

Commit 2237c90

Browse files
committed
Fix test failing on test:phantom
1 parent 4c80f23 commit 2237c90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/tests/Item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ test('Item#rasterize() bounds', function() {
10591059
equals(function() {
10601060
var raster = circle.rasterize({ resolution: 1000 });
10611061
// Reusing the raster for a 2nd rasterization should leave it in place.
1062-
return circle.rasterize({ resolution: 1000, raster }).bounds;
1062+
return circle.rasterize({ resolution: 1000, raster: raster }).bounds;
10631063
}, new Rectangle({ x: 45.032, y: 45.032, width: 9.936, height: 9.936 }));
10641064
});
10651065

0 commit comments

Comments
 (0)