File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,9 +86,11 @@ def testFormatRPMTestDependencies(self):
8686 """Tests the _FormatRPMTestDependencies function."""
8787 test_writer = self ._CreateTestWriter ()
8888
89- expected_formatted_test_dependencies = (
90- "TEST_DEPENDENCIES=\" python3-pbr\n "
91- " python3-setuptools\" ;"
89+ expected_formatted_test_dependencies = "" .join (
90+ [
91+ 'TEST_DEPENDENCIES="python3-pbr\n ' ,
92+ ' python3-setuptools";' ,
93+ ]
9294 )
9395
9496 python_dependencies = test_writer ._GetRPMPythonDependencies ()
Original file line number Diff line number Diff line change @@ -83,9 +83,11 @@ def testFormatDPKGTestDependencies(self):
8383 """Tests the _FormatDPKGTestDependencies function."""
8484 test_writer = self ._CreateTestWriter ()
8585
86- expected_formatted_test_dependencies = (
87- "TEST_DEPENDENCIES=\" python3-pbr\n "
88- " python3-setuptools\" ;"
86+ expected_formatted_test_dependencies = "" .join (
87+ [
88+ 'TEST_DEPENDENCIES="python3-pbr\n ' ,
89+ ' python3-setuptools";' ,
90+ ]
8991 )
9092
9193 python_dependencies = test_writer ._GetDPKGPythonDependencies ()
Original file line number Diff line number Diff line change @@ -83,9 +83,11 @@ def testFormatDPKGTestDependencies(self):
8383 """Tests the _FormatDPKGTestDependencies function."""
8484 test_writer = self ._CreateTestWriter ()
8585
86- expected_formatted_test_dependencies = (
87- "TEST_DEPENDENCIES=\" python3-pbr\n "
88- " python3-setuptools\" ;"
86+ expected_formatted_test_dependencies = "" .join (
87+ [
88+ 'TEST_DEPENDENCIES="python3-pbr\n ' ,
89+ ' python3-setuptools";' ,
90+ ]
8991 )
9092
9193 python_dependencies = test_writer ._GetDPKGPythonDependencies ()
You can’t perform that action at this time.
0 commit comments