Fix argv tests

This commit is contained in:
Daniel Imms
2016-07-07 09:52:54 -07:00
parent 06bc987651
commit e3fcbe6b6d
3 changed files with 7 additions and 8 deletions

View File

@@ -26,8 +26,8 @@ suite('formatOptions', () => {
formatOptions({
'foo': (<any>'bar ').repeat(9)
}, 40),
' foo bar bar bar bar bar bar bar bar\n' +
' bar');
' foo bar bar bar bar bar bar bar bar\n' +
' bar');
});
test('Text should revert to the condensed view when the terminal is too narrow', () => {
@@ -35,7 +35,7 @@ suite('formatOptions', () => {
formatOptions({
'foo': (<any>'bar ').repeat(9)
}, 30),
' foo\n' +
' bar bar bar bar bar bar bar bar bar ');
' foo\n' +
' bar bar bar bar bar bar bar bar bar ');
});
});