fix test
This commit is contained in:
parent
5e26c8d3c9
commit
034b73ba54
2 changed files with 19 additions and 15 deletions
|
@ -1365,6 +1365,14 @@ impl HumanEmitter {
|
|||
);
|
||||
line += 1;
|
||||
}
|
||||
// We add lines above, but if the last line has no explicit newline (which would
|
||||
// yield an empty line), then we revert one line up to continue with the next
|
||||
// styled text chunk on the same line as the last one from the prior one. Otherwise
|
||||
// every `text` would appear on their own line (because even though they didn't end
|
||||
// in '\n', they advanced `line` by one).
|
||||
if line > 0 {
|
||||
line -= 1;
|
||||
}
|
||||
}
|
||||
if self.short_message {
|
||||
let labels = msp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue