Merge pull request #6268 from felixonmars/patch-2

Correct a typo in _pytest/config/__init__.py
This commit is contained in:
Florian Bruhin 2019-11-24 17:04:26 +01:00 committed by GitHub
commit ed67312bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -784,7 +784,7 @@ class Config:
@classmethod
def fromdictargs(cls, option_dict, args):
""" constructor useable for subprocesses. """
""" constructor usable for subprocesses. """
config = get_config(args)
config.option.__dict__.update(option_dict)
config.parse(args, addopts=False)