Only send repository ids in databases param

At the moment we're only able to send one of:
- repositories
- repositoryLists
- repositoryOwners

In the future, we intend to be able to send a combination of these
but at the moment the API will only ever allow you to send one.

So let's be consistent and just send `repositories` here.
This commit is contained in:
Elena Tanasoiu
2022-09-28 16:10:44 +01:00
parent f4e6a0db9b
commit 49a2555dab
2 changed files with 0 additions and 4 deletions

View File

@@ -34,8 +34,6 @@ describe('Variant Analysis processor', function() {
},
'databases': {
'repositories': ['1', '2', '3'],
'repositoryLists': ['top10', 'top100'],
'repositoryOwners': ['mona', 'lisa']
},
'status': 'succeeded',
'actionsWorkflowRunId': 456,

View File

@@ -13,8 +13,6 @@ export function createMockSubmission(): VariantAnalysisSubmission {
},
databases: {
repositories: ['1', '2', '3'],
repositoryLists: ['top10', 'top100'],
repositoryOwners: ['mona', 'lisa'],
}
};
}