1 parent 2cc3972 commit 2cc864dCopy full SHA for 2cc864d
1 file changed
tests/test_operations.py
@@ -59,14 +59,15 @@ def test_linked_api_exposes_all_predefined_operations() -> None:
59
"create_post",
60
"retrieve_ssi",
61
"retrieve_performance",
62
+ "retrieve_profile_viewers",
63
]
64
65
for name in operation_names:
66
operation = getattr(linkedapi, name)
67
assert hasattr(operation, "execute")
68
assert hasattr(operation, "result")
69
assert hasattr(operation, "cancel")
- assert len(linkedapi.operations) == 38
70
+ assert len(linkedapi.operations) == 39
71
72
73
def test_operation_mappers_match_node_contract() -> None:
0 commit comments