We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4232e3a commit a360389Copy full SHA for a360389
tests/Subprocess/test_Subprocess_Arguments.py
@@ -40,8 +40,6 @@ def test_recursive_current_directory(self):
40
filename = os.path.join(subWorkingDir, 'foobar.txt')
41
self.touch(filename)
42
(rc, output, error) = self.invokeAsSubprocess(['.'], extraParams=['--recursive'], cwd=subWorkingDir)
43
- print(f"DEBUGPRINT[2]: test_Subprocess_Arguments.py:42: error={error}")
44
- print(f"DEBUGPRINT[1]: test_Subprocess_Arguments.py:42: output={output}")
45
self.assertEqual(0, rc)
46
self.assertEqual('', error)
47
newsubWorkingDir = os.path.join(self.workingDir, self.getDatePrefix() + 'subWorkingDir')
0 commit comments