Skip to content

Commit

Permalink
Trivial whitespace update on compression test
Browse files Browse the repository at this point in the history
  • Loading branch information
sgress454 committed Feb 10, 2016
1 parent 03f0fef commit f601366
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/integration/middleware.compression.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('middleware :: ', function() {
.on('data', function(data) {
// decompressed data as it is received
res += data;
})
})
.on('response', function(response) {
// unmodified http.IncomingMessage object
response.on('data', function(data) {
Expand All @@ -59,7 +59,7 @@ describe('middleware :: ', function() {
});

});

});

describe('In the development environment', function() {
Expand Down Expand Up @@ -97,12 +97,12 @@ describe('middleware :: ', function() {
.on('data', function(data) {
// decompressed data as it is received
res += data;
})
})
.on('response', function(response) {
// unmodified http.IncomingMessage object
response.on('data', function(data) {
rawLen += data.length;
})
});
})
.on('end', function(err) {
assert.equal(res, lipsum);
Expand All @@ -111,9 +111,9 @@ describe('middleware :: ', function() {
});

});

});

});

});
});

0 comments on commit f601366

Please sign in to comment.