mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	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:
		@@ -78,10 +78,8 @@ function render(template_name, args) {
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    var html = '<div style="height: 250px">';
 | 
					    var html = render('settings_tab', args);
 | 
				
			||||||
    html += render('settings_tab', args);
 | 
					 | 
				
			||||||
    html += "</div>";
 | 
					 | 
				
			||||||
    var div = $(html).find("div.notification-reminder");
 | 
					    var div = $(html).find("div.notification-reminder");
 | 
				
			||||||
    assert.equal(div.text().trim(), 'Some French text with Zulip');
 | 
					    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);
 | 
				
			||||||
}());
 | 
					}());
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user