Drop no-longer-used deprecated_python fixture

This commit is contained in:
Pradyun Gedam 2020-07-27 19:24:47 +05:30
parent e4f8e0a2b8
commit c631de61b9
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
1 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,7 @@ def contains_expected_lines(string, expected_lines):
return set(expected_lines) <= set(string.splitlines())
def test_check_install_canonicalization(script, deprecated_python):
def test_check_install_canonicalization(script):
pkga_path = create_test_package_with_setup(
script,
name='pkgA',
@ -59,8 +59,7 @@ def test_check_install_canonicalization(script, deprecated_python):
assert result.returncode == 0
def test_check_install_does_not_warn_for_out_of_graph_issues(
script, deprecated_python):
def test_check_install_does_not_warn_for_out_of_graph_issues(script):
pkg_broken_path = create_test_package_with_setup(
script,
name='broken',