fix typo in pytester docs

This commit is contained in:
Aaron Berdy 2022-03-12 14:44:52 -08:00
parent d306ec0a7e
commit f3053017b9
1 changed files with 1 additions and 1 deletions

View File

@ -832,7 +832,7 @@ class Pytester:
return self._makefile(ext, args, kwargs)
def makeconftest(self, source: str) -> Path:
"""Write a contest.py file with 'source' as contents."""
"""Write a conftest.py file with 'source' as contents."""
return self.makepyfile(conftest=source)
def makeini(self, source: str) -> Path: