Skip to content

Commit 2cc864d

Browse files
Update tests
1 parent 2cc3972 commit 2cc864d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_operations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,15 @@ def test_linked_api_exposes_all_predefined_operations() -> None:
5959
"create_post",
6060
"retrieve_ssi",
6161
"retrieve_performance",
62+
"retrieve_profile_viewers",
6263
]
6364

6465
for name in operation_names:
6566
operation = getattr(linkedapi, name)
6667
assert hasattr(operation, "execute")
6768
assert hasattr(operation, "result")
6869
assert hasattr(operation, "cancel")
69-
assert len(linkedapi.operations) == 38
70+
assert len(linkedapi.operations) == 39
7071

7172

7273
def test_operation_mappers_match_node_contract() -> None:

0 commit comments

Comments
 (0)