Skip to content

Commit 389334a

Browse files
kardasbartyuvipanda
authored andcommitted
Added missing base_image argument
1 parent 4d83abc commit 389334a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_buildpack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ def test_legacy_on_repo_without_dockerfile(base_image):
3939

4040

4141
@pytest.mark.parametrize("python_version", ["2.6", "3.0", "4.10", "3.99"])
42-
def test_unsupported_python(tmpdir, python_version):
42+
def test_unsupported_python(tmpdir, python_version, base_image):
4343
tmpdir.chdir()
44-
bp = PythonBuildPack()
44+
bp = PythonBuildPack(base_image)
4545
bp._python_version = python_version
4646
assert bp.python_version == python_version
4747
with pytest.raises(ValueError):

0 commit comments

Comments
 (0)