ran cargo fmt

This commit is contained in:
Oliver looney 2024-01-27 14:32:34 +00:00
parent f6d76e0104
commit 22254936a2
No known key found for this signature in database
1 changed files with 3 additions and 4 deletions

View File

@ -932,11 +932,12 @@ fn pager_set_terminal_title() {
.arg("test.txt")
.assert()
.success()
.stdout(predicate::str::contains("\u{1b}]0;bat: test.txt\x07pager-output\n").normalize());
.stdout(
predicate::str::contains("\u{1b}]0;bat: test.txt\x07pager-output\n").normalize(),
);
});
}
#[test]
#[serial]
fn env_var_bat_paging() {
@ -2445,5 +2446,3 @@ fn highlighting_independant_from_map_syntax_case() {
.stdout(expected)
.stderr("");
}