(self, client, command_args)
| 1084 | return None |
| 1085 | |
| 1086 | def __set_fail_point(self, client, command_args): |
| 1087 | if not client_context.test_commands_enabled: |
| 1088 | self.skipTest("Test commands must be enabled") |
| 1089 | |
| 1090 | self.configure_fail_point(client, command_args) |
| 1091 | self.addCleanup(self.configure_fail_point, client, command_args, off=True) |
| 1092 | |
| 1093 | def _testOperation_failPoint(self, spec): |
| 1094 | self.__set_fail_point( |
no test coverage detected