Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Sep 12, 2023
1 parent 448b827 commit dfae71a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def content(app: Sphinx) -> Iterator[Sphinx]:
def page(content, request) -> BeautifulSoup: # noqa: MAN001
pagename = request.param
c = (content.outdir / pagename).read_text()
c = c.replace("¶", "¶")
c = c.replace("’", "’")
c = c.replace("¶", '¶')
c = c.replace("’", '’')

yield BeautifulSoup(c, "html5lib")

0 comments on commit dfae71a

Please sign in to comment.