(self, expected, actual)
| 1145 | filename, tofile or (filename + '.new')) |
| 1146 | |
| 1147 | def assertFilesMatch(self, expected, actual): |
| 1148 | self.assertFileContents(expected, read_file(actual), tofile=actual) |
| 1149 | |
| 1150 | def assertContained(self, values, string, additional_info='', regex=False): |
| 1151 | if callable(string): |