test: Fix return type

This just returns a success signifier, not an error code.
This commit is contained in:
Fabian Homborg 2019-05-29 20:26:02 +02:00
parent a5b633d3a5
commit 364bc3fd63

View file

@ -626,7 +626,7 @@ bool combining_expression::evaluate(wcstring_list_t &errors) {
}
errors.push_back(format_string(L"Unknown token type in %s", __func__));
return STATUS_INVALID_ARGS;
return false;
}
bool parenthetical_expression::evaluate(wcstring_list_t &errors) {