node: Fix copy_and_paste test output.

I'm confused how this was passing when I tested previously.
This commit is contained in:
Tim Abbott 2017-11-23 14:18:28 -08:00
parent cc8c8ab21c
commit 0f8ee343de
1 changed files with 1 additions and 1 deletions

View File

@ -22,5 +22,5 @@ var copy_and_paste = zrequire('copy_and_paste');
// TODO: for cases where one is just pasting a link, we'd prefer // TODO: for cases where one is just pasting a link, we'd prefer
// that this not use markdown syntax, since that feels unnecessary. // that this not use markdown syntax, since that feels unnecessary.
assert.equal(copy_and_paste.paste_handler_converter(input), assert.equal(copy_and_paste.paste_handler_converter(input),
'[https://zulip.readthedocs.io/en/latest/subsystems/logging.html](https://zulip.readthedocs.io/en/latest/subsystems/logging.html'); '[https://zulip.readthedocs.io/en/latest/subsystems/logging.html](https://zulip.readthedocs.io/en/latest/subsystems/logging.html "https://zulip.readthedocs.io/en/latest/subsystems/logging.html")');
}()); }());