mirror of https://github.com/zulip/zulip.git
node: Fix a compose_actions test.
This was apparently wrong in 207d7a8ee6
.
This commit is contained in:
parent
82b808e620
commit
b4f2e09b3a
|
@ -275,7 +275,7 @@ run_test('quote_and_reply', () => {
|
||||||
|
|
||||||
compose_ui.replace_syntax = function (syntax, replacement) {
|
compose_ui.replace_syntax = function (syntax, replacement) {
|
||||||
assert.equal(syntax, '[Quoting…]');
|
assert.equal(syntax, '[Quoting…]');
|
||||||
assert.equal(replacement, 'Testing.');
|
assert.equal(replacement, '```quote\nTesting.\n```');
|
||||||
};
|
};
|
||||||
|
|
||||||
var opts = {
|
var opts = {
|
||||||
|
|
Loading…
Reference in New Issue