Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed an acceptance test
  • Loading branch information
tj committed Dec 17, 2011
1 parent d72a666 commit 1ea221a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/acceptance/ejs.js
Expand Up @@ -10,9 +10,9 @@ describe('ejs', function(){
.end(function(res){ .end(function(res){
res.should.have.status(200); res.should.have.status(200);
res.should.have.header('Content-Type', 'text/html; charset=utf-8'); res.should.have.header('Content-Type', 'text/html; charset=utf-8');
res.body.should.include.string('<li>tobi tobi@learnboost.com</li>'); res.body.should.include('<li>tobi tobi@learnboost.com</li>');
res.body.should.include.string('<li>loki loki@learnboost.com</li>'); res.body.should.include('<li>loki loki@learnboost.com</li>');
res.body.should.include.string('<li>jane jane@learnboost.com</li>'); res.body.should.include('<li>jane jane@learnboost.com</li>');
done(); done();
}); });
}) })
Expand Down

0 comments on commit 1ea221a

Please sign in to comment.