From aa4ee82744b39b6f61e8ba672fe762fa2d48264c Mon Sep 17 00:00:00 2001 From: Jason Cheatham Date: Thu, 7 Sep 2017 23:57:58 -0400 Subject: [PATCH] Fix pngjs test lint failure (again) --- types/pngjs/pngjs-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/pngjs/pngjs-tests.ts b/types/pngjs/pngjs-tests.ts index c85bbd5d3e..28b1efd733 100644 --- a/types/pngjs/pngjs-tests.ts +++ b/types/pngjs/pngjs-tests.ts @@ -26,10 +26,10 @@ const pngs = [ const png = pngs[0]; -if (png.readable === true) { +if (png.readable) { console.log('readable'); } -if (png.writable === true) { +if (png.writable) { console.log('writable'); } png.width === 1;