git grep -l tmpdir_factory | xargs sed -i 's/tmpdir_factory/tempdir_factory/g'

This commit is contained in:
Anthony Sottile 2015-10-01 10:24:25 -07:00
parent 5791d84236
commit 1dfcf10036
14 changed files with 199 additions and 199 deletions

View file

@ -128,11 +128,11 @@ def test_no_commands_run_command(mock_commands):
def test_help_cmd_in_empty_directory(
mock_commands,
tmpdir_factory,
tempdir_factory,
argparse_exit_mock,
argparse_parse_args_spy,
):
path = tmpdir_factory.get()
path = tempdir_factory.get()
with cwd(path):
with pytest.raises(CalledExit):