forked from mirrors/jj
cli: remove excessive newline from "jj bench revset(s)" output
This commit is contained in:
parent
0f108e278d
commit
9f1dc8f67c
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ fn bench_revset<M: Measurement>(
|
|||
group: &mut BenchmarkGroup<M>,
|
||||
revset: &str,
|
||||
) -> Result<(), CommandError> {
|
||||
writeln!(ui, "----------Testing revset: {revset}----------\n")?;
|
||||
writeln!(ui, "----------Testing revset: {revset}----------")?;
|
||||
let expression = workspace_command.parse_revset(revset)?;
|
||||
// Time both evaluation and iteration.
|
||||
let routine = |workspace_command: &WorkspaceCommandHelper, expression| {
|
||||
|
|
Loading…
Reference in a new issue