Skip to content

Commit

Permalink
update tests for latest AVA version
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Dec 31, 2015
1 parent f651a2d commit 37a075d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ test('main', t => {
t.is(fn('\n\n\nx\n\n\n'), 'x');
t.is(fn('\r\nx\r\n'), 'x');
t.is(fn('\n\r\n\nx\n\r\n\n'), 'x');
t.end();
});

test('start', t => {
Expand All @@ -15,7 +14,6 @@ test('start', t => {
t.is(fn.start('\n\n\n\nx'), 'x');
t.is(fn.start('\n\n\r\n\nx'), 'x');
t.is(fn.start('x\n\n\r\n\n'), 'x\n\n\r\n\n');
t.end();
});

test('end', t => {
Expand All @@ -24,5 +22,4 @@ test('end', t => {
t.is(fn.end('x\n\n\n\n'), 'x');
t.is(fn.end('x\n\n\r\n\n'), 'x');
t.is(fn.end('\n\n\r\n\nx'), '\n\n\r\n\nx');
t.end();
});

0 comments on commit 37a075d

Please sign in to comment.