diff --git a/jupyterhub/app.py b/jupyterhub/app.py index 5deb1181..d8770780 100644 --- a/jupyterhub/app.py +++ b/jupyterhub/app.py @@ -592,7 +592,7 @@ class JupyterHub(Application): @default('logo_file') def _logo_file_default(self): - return os.path.join(self.data_files_path, 'static', 'images', 'jupyter.png') + return os.path.join(self.data_files_path, 'static', 'images', 'jupyterhub-80.png') jinja_environment_options = Dict( help="Supply extra arguments that will be passed to Jinja environment." diff --git a/jupyterhub/tests/test_pages.py b/jupyterhub/tests/test_pages.py index 61a98065..05f5aacc 100644 --- a/jupyterhub/tests/test_pages.py +++ b/jupyterhub/tests/test_pages.py @@ -611,7 +611,7 @@ async def test_static_files(app): r = await async_requests.get(ujoin(base_url, 'logo')) r.raise_for_status() assert r.headers['content-type'] == 'image/png' - r = await async_requests.get(ujoin(base_url, 'static', 'images', 'jupyter.png')) + r = await async_requests.get(ujoin(base_url, 'static', 'images', 'jupyterhub-80.png')) r.raise_for_status() assert r.headers['content-type'] == 'image/png' r = await async_requests.get(ujoin(base_url, 'static', 'css', 'style.min.css'))