Fix output from test_tr_tag_settings().

For its HTML output, it was using a wrong label and a CSS
setting that clobbered other output.
This commit is contained in:
Steve Howell
2016-07-29 21:18:55 -07:00
committed by Tim Abbott
parent f301ccdb3e
commit 1d7a6c9941

View File

@@ -78,10 +78,8 @@ function render(template_name, args) {
}
};
var html = '<div style="height: 250px">';
html += render('settings_tab', args);
html += "</div>";
var html = render('settings_tab', args);
var div = $(html).find("div.notification-reminder");
assert.equal(div.text().trim(), 'Some French text with Zulip');
global.write_test_output("actions_popover_content.handlebars", html);
global.write_test_output("test_tr_tag settings", html);
}());