]> git.proxmox.com Git - mirror_novnc.git/blobdiff - tests/test.deflator.js
Add camelCase rule to eslint
[mirror_novnc.git] / tests / test.deflator.js
index 2f2fab3a2f169af89a3fac529092ee7030053032..12e8a46bfa58e1b071e90ade57e0f26b13ddd7c8 100644 (file)
@@ -17,12 +17,14 @@ function _inflator(compText, expected) {
         strm.output = new Uint8Array(chunkSize);
     }
 
+    /* eslint-disable camelcase */
     strm.input = compText;
     strm.avail_in = strm.input.length;
     strm.next_in = 0;
 
     strm.next_out = 0;
     strm.avail_out = expected.length;
+    /* eslint-enable camelcase */
 
     let ret = inflate(strm, 0);