Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated test after updating to synapse python client 4.4.0 and updated test after test resources get updated on synapse #1471

Merged
merged 4 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ async def test_store_async_annotation(self, synapse_store: SynapseStorage) -> No
) as mock_store_async:
result = await synapse_store.store_async_annotation(annos_dict)

mock_store_async.assert_called_once_with(synapse_store.syn)
mock_store_async.assert_called_once_with(synapse_client=synapse_store.syn)
assert result == expected_dict
assert isinstance(result, Annotations)

Expand Down
Loading