diff --git a/tests/test_manifest.py b/tests/test_manifest.py index 5829dcde1..3ce9e58a0 100644 --- a/tests/test_manifest.py +++ b/tests/test_manifest.py @@ -798,4 +798,4 @@ def test_get_manifest_with_files(self, helpers, component, datasetId): assert n_rows == 4 elif component == "BulkRNA-seqAssay": assert filename_in_manifest_columns - assert n_rows == 3 + assert n_rows == 4 diff --git a/tests/test_store.py b/tests/test_store.py index 708b6c36c..0bdfa0871 100644 --- a/tests/test_store.py +++ b/tests/test_store.py @@ -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)