From a2fad8750c035bf68e1b232bddb8befc7c4c187b Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Nov 09 2018 04:41:34 +0000 Subject: flake8 fixes Signed-off-by: Brian Stinson --- diff --git a/tests/test_cli.py b/tests/test_cli.py index d02896a..26aebdb 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -920,7 +920,7 @@ class TestGimmeSpec(CliTestCase): cli.gimmespec() output = sys.stdout.getvalue().strip() - self.assertEqual(os.path.join(self.cloned_repo_path,'docpkg.spec'), output) + self.assertEqual(os.path.join(self.cloned_repo_path, 'docpkg.spec'), output) class TestClean(CliTestCase): diff --git a/tests/test_commands.py b/tests/test_commands.py index 9d72844..b40a399 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -400,7 +400,7 @@ class TestProperties(CommandTestCase): def test_spec(self): cmd = self.make_commands() - self.assertEqual(os.path.join(self.cloned_repo_path,'docpkg.spec'), cmd.spec) + self.assertEqual(os.path.join(self.cloned_repo_path, 'docpkg.spec'), cmd.spec) def test_no_spec_as_it_is_deadpackage(self): with patch('os.listdir', return_value=['dead.package']):