We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa94a9 commit 372377bCopy full SHA for 372377b
text/tests/asa/mod.rs
@@ -314,11 +314,17 @@ fn asa_all_controls_sequence() {
314
// Test repeated form-feeds
315
#[test]
316
fn asa_multiple_form_feeds() {
317
- asa_test("1page1\n1page2\n1page3\n", "\x0cpage1\n\x0cpage2\n\x0cpage3\n");
+ asa_test(
318
+ "1page1\n1page2\n1page3\n",
319
+ "\x0cpage1\n\x0cpage2\n\x0cpage3\n",
320
+ );
321
}
322
323
// Test alternating double-space and normal
324
325
fn asa_alternating_spacing() {
- asa_test(" normal\n0double\n normal\n0double\n", "normal\n\ndouble\nnormal\n\ndouble\n");
326
327
+ " normal\n0double\n normal\n0double\n",
328
+ "normal\n\ndouble\nnormal\n\ndouble\n",
329
330
0 commit comments