| OLD | NEW |
| 1 from slave import recipe_test_api | 1 from slave import recipe_test_api |
| 2 | 2 |
| 3 |
| 3 class BisectTesterTestApi(recipe_test_api.RecipeTestApi): | 4 class BisectTesterTestApi(recipe_test_api.RecipeTestApi): |
| 4 @recipe_test_api.mod_test_data | 5 @recipe_test_api.mod_test_data |
| 5 @staticmethod | 6 @staticmethod |
| 6 def tempfile(tempfile): | 7 def tempfile(tempfile): |
| 7 return tempfile | 8 return tempfile |
| 8 | 9 |
| 9 def __call__(self, tempfile): | 10 def __call__(self, tempfile): |
| 10 return self.tempfile(tempfile) | 11 return self.tempfile(tempfile) |
| 11 | |
| OLD | NEW |