mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
src/builtin_test: Remove weird leading tab from error message
This is a remainder from when we used to speak of "eval errors".
This commit is contained in:
parent
e2ce63ff62
commit
d8ec4685ff
1 changed files with 1 additions and 1 deletions
|
@ -864,7 +864,7 @@ int builtin_test(parser_t &parser, io_streams_t &streams, wchar_t **argv) {
|
|||
if (!eval_errors.empty()) {
|
||||
if (!should_suppress_stderr_for_tests()) {
|
||||
for (size_t i = 0; i < eval_errors.size(); i++) {
|
||||
streams.err.append_format(L"\t%ls\n", eval_errors.at(i).c_str());
|
||||
streams.err.append_format(L"%ls\n", eval_errors.at(i).c_str());
|
||||
}
|
||||
}
|
||||
return STATUS_INVALID_ARGS;
|
||||
|
|
Loading…
Reference in a new issue