1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Update tests for new signature

This commit is contained in:
Pradyun Gedam 2020-10-27 01:05:29 +05:30
parent 1bb7bf6a4c
commit 45d3a3e859
No known key found for this signature in database
GPG key ID: FF99710C4332258E

View file

@ -232,5 +232,5 @@ def test_new_resolver_get_installation_order(resolver, edges, ordered_reqs):
def test_new_resolver_topological_weights(name, edges, expected_weights):
graph = _make_graph(edges)
weights = get_topological_weights(graph)
weights = get_topological_weights(graph, len(expected_weights))
assert weights == expected_weights