Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklambourne committed Feb 14, 2024
1 parent d9cf1c5 commit 8cb8d14
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/unit/test_elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,16 @@ def test_multi_select_user() -> None:
multi_select_user
)


def test_multi_select_user_with_initial_users() -> None:
multi_select_user = UserMultiSelectMenu(
action_id="multi_users_select",
placeholder=Text("Select one or more users", type_=TextType.PLAINTEXT),
initial_users= ["U064B5H1309", "U063JR973UP"],
)
assert fetch_sample(path="test/samples/elements/multi_select_user_with_initial_users.json") == repr(
multi_select_user
initial_users=["U064B5H1309", "U063JR973UP"],
)
assert fetch_sample(
path="test/samples/elements/multi_select_user_with_initial_users.json"
) == repr(multi_select_user)


def test_number_input_basic() -> None:
Expand Down

0 comments on commit 8cb8d14

Please sign in to comment.