Skip to content

Commit

Permalink
squash: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Nov 12, 2016
1 parent acecd18 commit afb904f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/parallel/test-zlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ const common = require('../common');
const assert = require('assert');
const zlib = require('zlib');
const path = require('path');
const fs = require('fs');
const util = require('util');
const stream = require('stream');

var zlibPairs = [
[zlib.Deflate, zlib.Inflate],
Expand Down Expand Up @@ -37,8 +40,6 @@ if (!process.env.PUMMEL) {
strategy = [0];
}

const fs = require('fs');

var testFiles = ['person.jpg', 'elipses.txt', 'empty.txt'];

if (process.env.FAST) {
Expand All @@ -51,9 +52,6 @@ testFiles.forEach(function(file) {
tests[file] = fs.readFileSync(path.resolve(common.fixturesDir, file));
});

const util = require('util');
const stream = require('stream');


// stream that saves everything
function BufferStream() {
Expand Down

0 comments on commit afb904f

Please sign in to comment.