Skip to content

Commit

Permalink
tests: fix runner args
Browse files Browse the repository at this point in the history
The project builder's runner masked this error.
  • Loading branch information
layday committed Oct 24, 2021
1 parent 4db81a3 commit 340af3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_projectbuilder.py
Expand Up @@ -476,7 +476,7 @@ def test_no_outdir_multiple(mocker, tmp_dir, package_test_flit):


def test_runner_user_specified(tmp_dir, package_test_flit):
def dummy_runner(cmd, cwd=None, env=None):
def dummy_runner(cmd, cwd=None, extra_environ=None):
raise RuntimeError('Runner was called')

builder = build.ProjectBuilder(package_test_flit, runner=dummy_runner)
Expand Down

0 comments on commit 340af3b

Please sign in to comment.