From 319f81bc5df1b657e3cd45f07721af7556696fe2 Mon Sep 17 00:00:00 2001 From: Nipunn Koorapati Date: Sat, 7 Aug 2021 15:23:54 -0700 Subject: [PATCH] Run black on tests/functional/test_vcs_bazaar.py --- tests/functional/test_vcs_bazaar.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/functional/test_vcs_bazaar.py b/tests/functional/test_vcs_bazaar.py index 0e598382a8e..4387288aa21 100644 --- a/tests/functional/test_vcs_bazaar.py +++ b/tests/functional/test_vcs_bazaar.py @@ -12,8 +12,8 @@ @pytest.mark.skipif( - 'TRAVIS' not in os.environ, - reason='Bazaar is only required under Travis') + "TRAVIS" not in os.environ, reason="Bazaar is only required under Travis" +) def test_ensure_bzr_available(): """Make sure that bzr is available when running in Travis.""" assert is_bzr_installed() @@ -21,11 +21,11 @@ def test_ensure_bzr_available(): @need_bzr def test_get_remote_url__no_remote(script, tmpdir): - repo_dir = tmpdir / 'temp-repo' + repo_dir = tmpdir / "temp-repo" repo_dir.mkdir() repo_dir = str(repo_dir) - script.run('bzr', 'init', repo_dir) + script.run("bzr", "init", repo_dir) with pytest.raises(RemoteNotFoundError): Bazaar().get_remote_url(repo_dir)