| 1163 | } |
| 1164 | |
| 1165 | static int cli_activation_transaction_commit_removal(cbm_activation_transaction_t *transaction) { |
| 1166 | return transaction && cbm_activation_transaction_commit(transaction, NULL, NULL) == |
| 1167 | CBM_ACTIVATION_TRANSACTION_OK |
| 1168 | ? CLI_OK |
| 1169 | : CLI_ERR; |
| 1170 | } |
| 1171 | |
| 1172 | static bool cli_activation_transaction_expected_build(cbm_activation_transaction_t *transaction, |
| 1173 | cli_binary_validator_t *validator) { |
no test coverage detected