| 1208 | } |
| 1209 | |
| 1210 | static int cli_activation_transaction_commit_removal(cbm_activation_transaction_t *transaction) { |
| 1211 | return transaction && cbm_activation_transaction_commit(transaction, NULL, NULL) == |
| 1212 | CBM_ACTIVATION_TRANSACTION_OK |
| 1213 | ? CLI_OK |
| 1214 | : CLI_ERR; |
| 1215 | } |
| 1216 | |
| 1217 | static bool cli_activation_transaction_expected_build(cbm_activation_transaction_t *transaction, |
| 1218 | cli_binary_validator_t *validator) { |
no test coverage detected