Skip to content

Commit 7eec9cb

Browse files
committed
chore: Format with black 20.8b1
1 parent c2e2417 commit 7eec9cb

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

tests/functional/workflows/provided_make/test_utils.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ def test_popen_can_accept_cwd_and_env(self):
3030
env.update({"SOME_ENV": "SOME_VALUE"})
3131

3232
p = self.osutils.popen(
33-
[sys.executable, "cwd.py"], stdout=self.osutils.pipe, stderr=self.osutils.pipe, env=env, cwd=testdata_dir,
33+
[sys.executable, "cwd.py"],
34+
stdout=self.osutils.pipe,
35+
stderr=self.osutils.pipe,
36+
env=env,
37+
cwd=testdata_dir,
3438
)
3539

3640
out, err = p.communicate()

tests/unit/test_builder.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ def test_must_not_load_any_workflows(self, get_workflow_mock, importlib_mock):
6262
importlib_mock.import_module.assert_not_called()
6363

6464
def test_with_real_workflow_class(self):
65-
"""Define a real workflow class and try to fetch it. This ensures the workflow registration actually works.
66-
"""
65+
"""Define a real workflow class and try to fetch it. This ensures the workflow registration actually works."""
6766

6867
# Declare my test workflow.
6968
class MyWorkflow(BaseWorkflow):

0 commit comments

Comments
 (0)