Skip to content

Commit 5d61bdb

Browse files
authored
Merge pull request #2979 from AndreMiras/feature/test_get_dep_names_of_package
✅ Fix test_get_dep_names_of_package
2 parents b3cc034 + b48204f commit 5d61bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pythonpackage_basic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_get_dep_names_of_package():
8585
# TEST 1 from external ref:
8686
# Check that colorama is returned without the install condition when
8787
# just getting the names (it has a "; ..." conditional originally):
88-
dep_names = get_dep_names_of_package("python-for-android")
88+
dep_names = get_dep_names_of_package("python-for-android==2023.9.16")
8989
assert "colorama" in dep_names
9090
assert "setuptools" not in dep_names
9191
try:

0 commit comments

Comments
 (0)