Skip to content

Commit

Permalink
fix(connect): fix hello test
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Sep 11, 2015
1 parent 8f6b720 commit f1b061c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/connect/hello-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("hello", function () {
return fetch("http://localhost:3000")
.then(res => res.text())
.then(text => {
assert.equal(text,
assert.equal(text, responseText);
});
});
});

0 comments on commit f1b061c

Please sign in to comment.