| 1186 | } |
| 1187 | |
| 1188 | static int cli_activation_transaction_commit_removal(cbm_activation_transaction_t *transaction) { |
| 1189 | return transaction && cbm_activation_transaction_commit(transaction, NULL, NULL) == |
| 1190 | CBM_ACTIVATION_TRANSACTION_OK |
| 1191 | ? CLI_OK |
| 1192 | : CLI_ERR; |
| 1193 | } |
| 1194 | |
| 1195 | static bool cli_activation_transaction_expected_build(cbm_activation_transaction_t *transaction, |
| 1196 | cli_binary_validator_t *validator) { |
no test coverage detected