Skip to content

Commit 834a3bc

Browse files
committed
test is hard to follow
1 parent 9b1cda2 commit 834a3bc

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

ci/sembr/src/main.rs

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -294,40 +294,6 @@ fn test_prettify_ignore_link_targets() {
294294
assert_eq!(original, lengthen_lines(original, 100));
295295
}
296296

297-
#[test]
298-
fn test_sembr_then_prettify() {
299-
let original = "
300-
hi there. do
301-
not split
302-
short sentences.
303-
hi again.
304-
";
305-
let expected = "
306-
hi there.
307-
do
308-
not split
309-
short sentences.
310-
hi again.
311-
";
312-
let processed = comply(original);
313-
assert_eq!(expected, processed);
314-
let expected = "
315-
hi there.
316-
do not split
317-
short sentences.
318-
hi again.
319-
";
320-
let processed = lengthen_lines(&processed, 50);
321-
assert_eq!(expected, processed);
322-
let expected = "
323-
hi there.
324-
do not split short sentences.
325-
hi again.
326-
";
327-
let processed = lengthen_lines(&processed, 50);
328-
assert_eq!(expected, processed);
329-
}
330-
331297
#[test]
332298
fn test_sembr_question_mark() {
333299
let original = "

0 commit comments

Comments
 (0)