mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-02 14:01:20 -03:00
test: Fix return type
This just returns a success signifier, not an error code.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user