Skip to content

Commit cebfa85

Browse files
committed
Fix?
1 parent 82d5fb5 commit cebfa85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/external-assertions/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ The expression evaluated to a falsy value:
2424
AssertionError [ERR_ASSERTION]: The expression evaluated to a falsy value:
2525
2626
assert.ok(false)
27-
`.split('\n').map(line => line ? ` ${line}` : '').join('\n'),
27+
`.split('\n').map(line => line ? ` ${line}` : '').join('\n') + '\n',
2828
`
2929
false == true
3030
3131
AssertionError [ERR_ASSERTION]: false == true
32-
`.split('\n').map(line => line ? ` ${line}` : '').join('\n') + '\n',
32+
`.split('\n').map(line => line ? ` ${line}` : '').join('\n'),
3333
);
3434
}
3535

0 commit comments

Comments
 (0)