Translates the generic _program.py into the actual filename.
(testcase: DataDrivenTestCase)
| 111 | |
| 112 | |
| 113 | def adapt_output(testcase: DataDrivenTestCase) -> list[str]: |
| 114 | """Translates the generic _program.py into the actual filename.""" |
| 115 | program = "_" + testcase.name + ".py" |
| 116 | return [program_re.sub(program, line) for line in testcase.output] |
no outgoing calls
no test coverage detected
searching dependent graphs…