Skip to content

Commit f276c54

Browse files
authored
Rename browser tab title to Home
* Rename browser tab title to Home (#6912) * fixing `test_tree_handler` to expect Home as title
1 parent 82703a6 commit f276c54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

notebook/templates/tree.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
6-
<title>{{page_config['appName'] | e}} - Tree</title>
6+
<title>Home</title>
77
{% block favicon %}
88
<link rel="icon" type="image/x-icon" href="{{ base_url | escape }}static/favicons/favicon.ico" class="favicon">
99
{% endblock %}

tests/test_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async def test_tree_handler(notebooks, notebookapp, jp_fetch):
4040

4141
# Check that the tree template is loaded
4242
html = r.body.decode()
43-
assert "- Tree</title>" in html
43+
assert "<title>Home</title>" in html
4444

4545
redirected_url = None
4646

0 commit comments

Comments
 (0)