diff options
Diffstat (limited to 'packages/meshbay-hub/tests/test_transport_contracts.py')
| -rw-r--r-- | packages/meshbay-hub/tests/test_transport_contracts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/meshbay-hub/tests/test_transport_contracts.py b/packages/meshbay-hub/tests/test_transport_contracts.py index 5da8104..5dc3b7b 100644 --- a/packages/meshbay-hub/tests/test_transport_contracts.py +++ b/packages/meshbay-hub/tests/test_transport_contracts.py @@ -155,7 +155,7 @@ def test_the_form_asks_one_question_not_two(app): So there is one selector. "Open" is what makes a group listed, and the request derives the rest. """ - form = app[app.index("function CreateGroupPage"):] + form = app[app.index("function CreateGroupFormSimple"):] form = form[:form.index("\n}\n")] assert "setVisibility(" not in form, "the visibility selector is back" @@ -185,7 +185,7 @@ def test_the_strings_the_visibility_box_used_are_gone(app): def test_the_form_starts_on_a_combination_the_api_accepts(app): - form = app[app.index("function CreateGroupPage"):] + form = app[app.index("function CreateGroupFormSimple"):] assert "useState('invite')" in form[:form.index("return html")] |