Skip to content

Commit 3479485

Browse files
committed
Changes to use black Python formatter
1 parent ac1b810 commit 3479485

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

tests/dependency_writers/gift_copr.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ def testFormatRPMTestDependencies(self):
8787
test_writer = self._CreateTestWriter()
8888

8989
expected_formatted_test_dependencies = (
90-
'TEST_DEPENDENCIES="python3-pbr\n' ' python3-setuptools";'
90+
"TEST_DEPENDENCIES=\"python3-pbr\n"
91+
" python3-setuptools\";"
9192
)
9293

9394
python_dependencies = test_writer._GetRPMPythonDependencies()

tests/dependency_writers/gift_ppa.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def testFormatDPKGTestDependencies(self):
8484
test_writer = self._CreateTestWriter()
8585

8686
expected_formatted_test_dependencies = (
87-
'TEST_DEPENDENCIES="python3-pbr\n' ' python3-setuptools";'
87+
"TEST_DEPENDENCIES=\"python3-pbr\n"
88+
" python3-setuptools\";"
8889
)
8990

9091
python_dependencies = test_writer._GetDPKGPythonDependencies()

tests/dependency_writers/linux_scripts.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def testFormatDPKGTestDependencies(self):
8484
test_writer = self._CreateTestWriter()
8585

8686
expected_formatted_test_dependencies = (
87-
'TEST_DEPENDENCIES="python3-pbr\n' ' python3-setuptools";'
87+
"TEST_DEPENDENCIES=\"python3-pbr\n"
88+
" python3-setuptools\";"
8889
)
8990

9091
python_dependencies = test_writer._GetDPKGPythonDependencies()

0 commit comments

Comments
 (0)