Skip to content

Commit e5e950b

Browse files
authored
test(internal/docfx): fix expected number of pages in test (#8437)
1 parent 9a0c631 commit e5e950b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/godocfx/godocfx_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func TestParse(t *testing.T) {
7070
if got, want := len(r.toc), 1; got != want {
7171
t.Fatalf("Parse got len(toc) = %d, want %d", got, want)
7272
}
73-
if got, want := len(r.pages), 29; got != want {
73+
if got, want := len(r.pages), 33; got != want {
7474
t.Errorf("Parse got len(pages) = %d, want %d", got, want)
7575
}
7676
if got := r.module.Path; got != mod {

0 commit comments

Comments
 (0)