Skip to content

Commit 6c5623e

Browse files
committed
Fix several dependency resolution tests
Update the assertions to re-align with changed dependency trees. Signed-off-by: Frank Viernau <frank_viernau@epam.com>
1 parent 1d98803 commit 6c5623e

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

tests/test_resolution.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ def test_get_resolved_dependencies_with_flask_and_python_310():
4545
as_tree=False,
4646
)
4747
assert plist == [
48-
"pkg:pypi/click@8.1.6",
48+
"pkg:pypi/click@8.1.7",
4949
"pkg:pypi/flask@2.1.2",
5050
"pkg:pypi/itsdangerous@2.1.2",
5151
"pkg:pypi/jinja2@3.1.2",
5252
"pkg:pypi/markupsafe@2.1.3",
53-
"pkg:pypi/werkzeug@2.3.6",
53+
"pkg:pypi/werkzeug@2.3.7",
5454
]
5555

5656

@@ -68,13 +68,13 @@ def test_get_resolved_dependencies_with_flask_and_python_310_windows():
6868
as_tree=False,
6969
)
7070
assert plist == [
71-
"pkg:pypi/click@8.1.6",
71+
"pkg:pypi/click@8.1.7",
7272
"pkg:pypi/colorama@0.4.6",
7373
"pkg:pypi/flask@2.1.2",
7474
"pkg:pypi/itsdangerous@2.1.2",
7575
"pkg:pypi/jinja2@3.1.2",
7676
"pkg:pypi/markupsafe@2.1.3",
77-
"pkg:pypi/werkzeug@2.3.6",
77+
"pkg:pypi/werkzeug@2.3.7",
7878
]
7979

8080

@@ -119,14 +119,14 @@ def test_get_resolved_dependencies_with_tilde_requirement_using_json_api():
119119
),
120120
)
121121
assert plist == [
122-
"pkg:pypi/click@8.1.6",
122+
"pkg:pypi/click@8.1.7",
123123
"pkg:pypi/flask@2.1.3",
124124
"pkg:pypi/importlib-metadata@6.8.0",
125125
"pkg:pypi/itsdangerous@2.1.2",
126126
"pkg:pypi/jinja2@3.1.2",
127127
"pkg:pypi/markupsafe@2.1.3",
128-
"pkg:pypi/werkzeug@2.3.6",
129-
"pkg:pypi/zipp@3.16.2",
128+
"pkg:pypi/werkzeug@2.3.7",
129+
"pkg:pypi/zipp@3.17.0",
130130
]
131131

132132

@@ -147,11 +147,11 @@ def test_without_supported_wheels():
147147
assert plist == [
148148
"pkg:pypi/autobahn@22.3.2",
149149
"pkg:pypi/cffi@1.15.1",
150-
"pkg:pypi/cryptography@41.0.3",
150+
"pkg:pypi/cryptography@41.0.4",
151151
"pkg:pypi/hyperlink@21.0.0",
152152
"pkg:pypi/idna@3.4",
153153
"pkg:pypi/pycparser@2.21",
154-
"pkg:pypi/setuptools@68.0.0",
154+
"pkg:pypi/setuptools@68.2.2",
155155
"pkg:pypi/txaio@23.1.1",
156156
]
157157

0 commit comments

Comments
 (0)