@@ -115,7 +115,7 @@ fn test_rust_bad() {
115115 def
116116 // tidy-alphabetical-end
117117 " ;
118- bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
118+ bad ( lines, "bad:3 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
119119}
120120
121121#[ test]
@@ -127,7 +127,7 @@ fn test_toml_bad() {
127127 def
128128 # tidy-alphabetical-end
129129 " ;
130- bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
130+ bad ( lines, "bad:3 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
131131}
132132
133133#[ test]
@@ -141,7 +141,7 @@ fn test_features_bad() {
141141 #![feature(def)]
142142 tidy-alphabetical-end
143143 " ;
144- bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
144+ bad ( lines, "bad:3 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
145145}
146146
147147#[ test]
@@ -154,7 +154,7 @@ fn test_indent_bad() {
154154 def
155155 $ tidy-alphabetical-end
156156 " ;
157- bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
157+ bad ( lines, "bad:3 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
158158}
159159
160160#[ test]
@@ -170,7 +170,7 @@ fn test_split_bad() {
170170 )
171171 && tidy-alphabetical-end
172172 " ;
173- bad ( lines, "bad:3 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
173+ bad ( lines, "bad:4 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
174174}
175175
176176#[ test]
@@ -339,23 +339,23 @@ fn test_numeric_bad() {
339339 item2
340340 # tidy-alphabetical-end
341341 " ;
342- bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
342+ bad ( lines, "bad:3 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
343343
344344 let lines = "\
345345 # tidy-alphabetical-start
346346 zve64f
347347 zve64d
348348 # tidy-alphabetical-end
349349 " ;
350- bad ( lines, "bad:1 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
350+ bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
351351
352352 let lines = "\
353353 # tidy-alphabetical-start
354354 000
355355 00
356356 # tidy-alphabetical-end
357357 " ;
358- bad ( lines, "bad:1 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
358+ bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
359359}
360360
361361#[ test]
@@ -394,7 +394,7 @@ fn multiline() {
394394 );
395395 tidy-alphabetical-end
396396 " ;
397- bad ( lines, "bad:1 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
397+ bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
398398
399399 let lines = "\
400400 tidy-alphabetical-start
@@ -406,7 +406,7 @@ fn multiline() {
406406 a);
407407 tidy-alphabetical-end
408408 " ;
409- bad ( lines, "bad:1 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
409+ bad ( lines, "bad:2 : line not in alphabetical order (tip: use --bless to sort this list)" ) ;
410410
411411 let lines = "\
412412 force_unwind_tables: Option<bool> = (None, parse_opt_bool, [TRACKED],
0 commit comments