Skip to content

Commit 02b7ce4

Browse files
committed
Fixes additional formatting issues.
1 parent 296c1a5 commit 02b7ce4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/writeCache.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ describe('writeCache', function() {
1212
it('should receive the request and cache data', function(done) {
1313
app = express();
1414
app.use(proxy('httpbin.org',{
15-
cacheWrite: function (req,cacheData) {
15+
cacheWrite: function(req,cacheData) {
1616
assert.equal (cacheData.data.url,'http://httpbin.org/get');
1717
assert.equal (cacheData.headers['Content-Type'], 'application/json');
1818
assert.equal (cacheData.status,'200');
1919
}
20-
}));
21-
request(app)
20+
}));
21+
request(app)
2222
.get('/get')
2323
.end(function(err, res) {
2424
if (err) { return done(err); }
2525
assert(/node-superagent/.test(res.body.headers['User-Agent']));
2626
assert.equal(res.body.url, 'http://httpbin.org/get');
2727
done(err);
2828
});
29-
});
29+
});
3030
});

0 commit comments

Comments
 (0)