summaryrefslogtreecommitdiffstats
path: root/test/units/cli
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-01-28 00:45:23 +0100
committerGitHub <noreply@github.com>2017-01-28 00:45:23 +0100
commit95789f3949b01c79c729315ff375d0e759f64970 (patch)
treef1e2ed9fcc6aaa5e1ed56a20dd1e609e55489cb6 /test/units/cli
parentwin_file: Add check-mode support (#20671) (diff)
downloadansible-95789f3949b01c79c729315ff375d0e759f64970.tar.xz
ansible-95789f3949b01c79c729315ff375d0e759f64970.zip
PEP 8 whitespace cleanup. (#20783)
* PEP 8 E271 whitespace cleanup. * PEP 8 W293 whitespace cleanup. * Fix whitespace issue from recent PR.
Diffstat (limited to 'test/units/cli')
-rw-r--r--test/units/cli/test_galaxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/cli/test_galaxy.py b/test/units/cli/test_galaxy.py
index 6506a59850..3bc58c01ab 100644
--- a/test/units/cli/test_galaxy.py
+++ b/test/units/cli/test_galaxy.py
@@ -120,7 +120,7 @@ class TestGalaxy(unittest.TestCase):
with patch.object(ansible.cli.CLI, "execute", return_value=None) as mock_ex:
with patch.object(ansible.cli.CLI, "run", return_value=None) as mock_run:
gc.run()
-
+
# testing
self.assertEqual(mock_run.call_count, 1)
self.assertTrue(isinstance(gc.api, ansible.galaxy.api.GalaxyAPI))