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:
Fabian Homborg 2019-03-26 21:39:25 +01:00
parent e2ce63ff62
commit d8ec4685ff

View file

@ -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;