X Tutup
Skip to content

Commit 8cc77bd

Browse files
committed
Fix test expectation for man contents
cpuguy83/go-md2man#74
1 parent 668d7dc commit 8cc77bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/docs/man_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func TestGenManSeeAlso(t *testing.T) {
101101
if err := assertNextLineEquals(scanner, ".PP"); err != nil {
102102
t.Fatalf("First line after SEE ALSO wasn't break-indent: %v", err)
103103
}
104-
if err := assertNextLineEquals(scanner, `\fBroot\-bbb(1)\fP, \fBroot\-ccc(1)\fP`); err != nil {
104+
if err := assertNextLineEquals(scanner, `\fBroot-bbb(1)\fP, \fBroot-ccc(1)\fP`); err != nil {
105105
t.Fatalf("Second line after SEE ALSO wasn't correct: %v", err)
106106
}
107107
}

0 commit comments

Comments
 (0)
X Tutup