| 1157 | } |
| 1158 | |
| 1159 | static int cli_activation_transaction_commit_removal(cbm_activation_transaction_t *transaction) { |
| 1160 | return transaction && cbm_activation_transaction_commit(transaction, NULL, NULL) == |
| 1161 | CBM_ACTIVATION_TRANSACTION_OK |
| 1162 | ? CLI_OK |
| 1163 | : CLI_ERR; |
| 1164 | } |
| 1165 | |
| 1166 | static bool cli_activation_transaction_expected_build(cbm_activation_transaction_t *transaction, |
| 1167 | cli_binary_validator_t *validator) { |
no test coverage detected