Package loadable: compare case insensitive (#16234)

This commit is contained in:
Paulus Schoutsen 2018-08-28 10:53:12 +02:00 committed by GitHub
parent 376d4e4fa0
commit a14980716d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -239,3 +239,6 @@ def test_package_loadable_installed_twice():
with patch('pkg_resources.find_distributions', side_effect=[[v2]]):
assert package.package_loadable('hello==2.0.0')
with patch('pkg_resources.find_distributions', side_effect=[[v2]]):
assert package.package_loadable('Hello==2.0.0')