node_tests: Fix broken assert.equal in templates.js.

This commit is contained in:
Vishnu Ks
2017-09-17 04:49:11 +05:30
committed by Tim Abbott
parent 94e099eaab
commit 2f32439fc3

View File

@@ -1255,7 +1255,9 @@ function render(template_name, args) {
global.write_handlebars_output("user_info_popover_title", html);
html = '<div>' + html + '</div>';
assert($(html).find('.popover-avatar').css('background-image'), "url(avatar/hamlet@zulip.com)");
assert.equal($(html).find('.popover-avatar').css('background-image'), "url(avatar/hamlet@zulip.com)");
}());
}());
(function user_presence_rows() {