Skip to content

Commit

Permalink
Merge f06586c into 3a6875a
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Feb 9, 2021
2 parents 3a6875a + f06586c commit 9fcd88b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
38 changes: 23 additions & 15 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/ofxstatement/tests/test_tool.py
Expand Up @@ -6,6 +6,7 @@
import logging
import logging.handlers
import shutil
from typing import Dict

import mock

Expand Down Expand Up @@ -162,7 +163,8 @@ def test_editconfig_existing(self) -> None:
call = mock.Mock()
subprocesspatch = mock.patch("subprocess.call", call)

envpatch = mock.patch("os.environ", {})
env: Dict[str, str] = {}
envpatch = mock.patch("os.environ", env)

with locpatch, envpatch, mkdirspatch, subprocesspatch:
tool.run(["edit-config"])
Expand Down

0 comments on commit 9fcd88b

Please sign in to comment.