Skip to content

Commit 372377b

Browse files
Copilotjgarzik
andcommitted
Run cargo fmt to fix CI/CD formatting check
Co-authored-by: jgarzik <494411+jgarzik@users.noreply.github.com>
1 parent daa94a9 commit 372377b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

text/tests/asa/mod.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,11 +314,17 @@ fn asa_all_controls_sequence() {
314314
// Test repeated form-feeds
315315
#[test]
316316
fn asa_multiple_form_feeds() {
317-
asa_test("1page1\n1page2\n1page3\n", "\x0cpage1\n\x0cpage2\n\x0cpage3\n");
317+
asa_test(
318+
"1page1\n1page2\n1page3\n",
319+
"\x0cpage1\n\x0cpage2\n\x0cpage3\n",
320+
);
318321
}
319322

320323
// Test alternating double-space and normal
321324
#[test]
322325
fn asa_alternating_spacing() {
323-
asa_test(" normal\n0double\n normal\n0double\n", "normal\n\ndouble\nnormal\n\ndouble\n");
326+
asa_test(
327+
" normal\n0double\n normal\n0double\n",
328+
"normal\n\ndouble\nnormal\n\ndouble\n",
329+
);
324330
}

0 commit comments

Comments
 (0)