Skip to content

Commit

Permalink
fixed bundle test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Nov 3, 2011
1 parent 7830536 commit 794ba95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/bundle.js
Expand Up @@ -15,7 +15,7 @@ exports.checkCookieHTTP = function () {
res.end('pow');
}
});
var server = dnode().listen(web, { io : { log : null } });
var server = dnode().listen(web);

web.listen(port, function () {
var req = {
Expand Down Expand Up @@ -49,7 +49,7 @@ exports.checkCookieExpress = function () {
res.end('pow');
});

var server = dnode().listen(app, { io : { log : null } });
var server = dnode().listen(app);

app.listen(port, function () {
var req = {
Expand Down

0 comments on commit 794ba95

Please sign in to comment.