diff options
Diffstat (limited to 'packages/meshbay-hub/tests')
| -rw-r--r-- | packages/meshbay-hub/tests/test_upload_controls_hidden.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-hub/tests/test_upload_controls_hidden.py b/packages/meshbay-hub/tests/test_upload_controls_hidden.py index 955b47d..94917d2 100644 --- a/packages/meshbay-hub/tests/test_upload_controls_hidden.py +++ b/packages/meshbay-hub/tests/test_upload_controls_hidden.py @@ -47,7 +47,7 @@ def _component(app: str, name: str) -> str: def test_the_files_toolbar_hides_its_upload_button(): page = _component(FILES_APP.read_text(encoding="utf-8"), "FilesPanel") toolbar = page[page.index("file-toolbar"):] - toolbar = toolbar[:toolbar.index("group.mkdir")] + toolbar = toolbar[:toolbar.index("breadcrumbs")] assert "mayUpload &&" in toolbar, "the Upload button is offered regardless" |