Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahDragon authored Apr 4, 2017
1 parent 494a9aa commit a7ca0b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ describe('Marked renderer', function() {
var result = r({text: body});

result.should.eql([
'<p>Great website <a href="http://hexo.io">http://hexo.io</a>',
'<p><a href="http://hexo.io">Hexo</a>'
'<p>Great website <a href="http://hexo.io">http://hexo.io</a></p>',
'<p><a href="http://hexo.io">Hexo</a></p>'
].join('\n'));
});

Expand All @@ -116,8 +116,8 @@ describe('Marked renderer', function() {
var result = r({text: body});

result.should.eql([
'<p>Great website http://hexo.io',
'<p><a href="http://hexo.io">Hexo</a>'
'<p>Great website http://hexo.io</p>',
'<p><a href="http://hexo.io">Hexo</a></p>'
].join('\n'));
});
});
Expand Down

0 comments on commit a7ca0b0

Please sign in to comment.