ok/jj
1
0
Fork 0
forked from mirrors/jj

cli: remove excessive newline from "jj bench revset(s)" output

This commit is contained in:
Yuya Nishihara 2023-03-31 19:08:14 +09:00
parent 0f108e278d
commit 9f1dc8f67c

View file

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