(self, names)
| 623 | wildcard) |
| 624 | |
| 625 | def expect_modification(self, names): |
| 626 | for name in self.adjust_names(names): |
| 627 | try: |
| 628 | glob_remove(self.unexpected_difference.modified_files, name) |
| 629 | except: |
| 630 | annotation("failure", "File %s not modified as expected" % |
| 631 | name) |
| 632 | self.fail_test(1) |
| 633 | |
| 634 | def ignore_modification(self, wildcard): |
| 635 | self.__ignore_elements(self.unexpected_difference.modified_files, |
nothing calls this directly
no test coverage detected