Skip to content

Commit

Permalink
test(internal/docfx): fix expected number of pages in test (#8437)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz committed Aug 17, 2023
1 parent 9a0c631 commit e5e950b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/godocfx/godocfx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestParse(t *testing.T) {
if got, want := len(r.toc), 1; got != want {
t.Fatalf("Parse got len(toc) = %d, want %d", got, want)
}
if got, want := len(r.pages), 29; got != want {
if got, want := len(r.pages), 33; got != want {
t.Errorf("Parse got len(pages) = %d, want %d", got, want)
}
if got := r.module.Path; got != mod {
Expand Down

0 comments on commit e5e950b

Please sign in to comment.