(self, names)
| 650 | wildcard) |
| 651 | |
| 652 | def expect_modification(self, names): |
| 653 | for name in self.adjust_names(names): |
| 654 | try: |
| 655 | glob_remove(self.unexpected_difference.modified_files, name) |
| 656 | except: |
| 657 | annotation("failure", "File %s not modified as expected" % |
| 658 | name) |
| 659 | self.fail_test(1) |
| 660 | |
| 661 | def ignore_modification(self, wildcard): |
| 662 | self.__ignore_elements(self.unexpected_difference.modified_files, |
nothing calls this directly
no test coverage detected