mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-30 22:58:46 +00:00
test: Fix return type
This just returns a success signifier, not an error code.
This commit is contained in:
parent
a5b633d3a5
commit
364bc3fd63
1 changed files with 1 additions and 1 deletions
|
@ -626,7 +626,7 @@ bool combining_expression::evaluate(wcstring_list_t &errors) {
|
||||||
}
|
}
|
||||||
|
|
||||||
errors.push_back(format_string(L"Unknown token type in %s", __func__));
|
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) {
|
bool parenthetical_expression::evaluate(wcstring_list_t &errors) {
|
||||||
|
|
Loading…
Reference in a new issue