Skip to content

Commit b9f8295

Browse files
authored
Merge pull request #10302 from nipunn1313/blacken_tests42
Run black on tests/functional/test_vcs_bazaar.py
2 parents 4446d1a + 319f81b commit b9f8295

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/functional/test_vcs_bazaar.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212

1313

1414
@pytest.mark.skipif(
15-
'TRAVIS' not in os.environ,
16-
reason='Bazaar is only required under Travis')
15+
"TRAVIS" not in os.environ, reason="Bazaar is only required under Travis"
16+
)
1717
def test_ensure_bzr_available():
1818
"""Make sure that bzr is available when running in Travis."""
1919
assert is_bzr_installed()
2020

2121

2222
@need_bzr
2323
def test_get_remote_url__no_remote(script, tmpdir):
24-
repo_dir = tmpdir / 'temp-repo'
24+
repo_dir = tmpdir / "temp-repo"
2525
repo_dir.mkdir()
2626
repo_dir = str(repo_dir)
2727

28-
script.run('bzr', 'init', repo_dir)
28+
script.run("bzr", "init", repo_dir)
2929

3030
with pytest.raises(RemoteNotFoundError):
3131
Bazaar().get_remote_url(repo_dir)

0 commit comments

Comments
 (0)