Skip to content

Commit f3f92ab

Browse files
committed
Fix travis segfault
1 parent 503add6 commit f3f92ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/selenium.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
function getPixelArray(base64) {
5454
return Bacon.fromCallback(function(callback) {
5555
var arraybuffer = base64_arraybuffer.decode(base64);
56-
(new PNG(arraybuffer)).decode(callback);
56+
(new PNG(arraybuffer)).decodePixels(callback);
5757
});
5858
}
5959

0 commit comments

Comments
 (0)