Skip to content

Commit

Permalink
[fix] Don't over-eagerly inspect the content
Browse files Browse the repository at this point in the history
  • Loading branch information
3rd-Eden committed Feb 25, 2015
1 parent 3ede66d commit e49e874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/pipe.test.js
Expand Up @@ -784,7 +784,7 @@ describe('Pipe', function () {
var response = new Response;
response.write = function write(data, encoding, cb) {
data = data.toString('utf-8');
assume(data).to.include('<body data-pagelet="faq">\n </body>\n</html>');
assume(data).to.include('<body data-pagelet="faq">');
done();
};

Expand Down

0 comments on commit e49e874

Please sign in to comment.