remove sorting for repo key for additional_deps

in other languages this order can matter (such as ruby)
This commit is contained in:
Anthony Sottile 2023-02-22 20:31:14 -05:00
parent cdd360645a
commit a631abdabf
3 changed files with 3 additions and 3 deletions

View file

@ -180,7 +180,7 @@ def test_create_when_store_already_exists(store):
def test_db_repo_name(store):
assert store.db_repo_name('repo', ()) == 'repo'
assert store.db_repo_name('repo', ('b', 'a', 'c')) == 'repo:a,b,c'
assert store.db_repo_name('repo', ('b', 'a', 'c')) == 'repo:b,a,c'
def test_local_resources_reflects_reality():