From f3053017b9a540fc14fddbb4e40066348ac8c25c Mon Sep 17 00:00:00 2001 From: Aaron Berdy Date: Sat, 12 Mar 2022 14:44:52 -0800 Subject: [PATCH] fix typo in pytester docs --- src/_pytest/pytester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/pytester.py b/src/_pytest/pytester.py index 8368f9441..359e2aebd 100644 --- a/src/_pytest/pytester.py +++ b/src/_pytest/pytester.py @@ -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: