(self, fp, field, expected, got)
| 557 | fp, expected, got)) |
| 558 | |
| 559 | def __assert_field(self, fp, field, expected, got): |
| 560 | self.assertEqual( |
| 561 | expected, got, |
| 562 | 'Incorrect status for {0}: expected {1}={2}, got {3}={4}'.format( |
| 563 | fp, field, expected, field, got)) |
| 564 | |
| 565 | |
| 566 | class TestFileDiff(TestFile): |