(s)
| 173 | |
| 174 | def DiffLines(expected, actual): |
| 175 | def Decode(s): |
| 176 | return s.decode('utf-8', 'replace') |
| 177 | |
| 178 | expected_lines = [Decode(line) for line in expected.splitlines() if line] |
| 179 | actual_lines = [Decode(line) for line in actual.splitlines() if line] |