From 76d1cb72c842b64ff2c49bd3221171e16a52f07d Mon Sep 17 00:00:00 2001 From: Zac Hatfield-Dodds Date: Sat, 16 Jul 2022 16:40:03 -0500 Subject: [PATCH] Update src/_pytest/main.py --- src/_pytest/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/main.py b/src/_pytest/main.py index 92b48f1a7..40a4f1cdb 100644 --- a/src/_pytest/main.py +++ b/src/_pytest/main.py @@ -650,7 +650,7 @@ class Session(nodes.FSCollector): for arg, collectors in self._notfound: if collectors: errors.append( - f"coundn't collect: {arg}\n(no name {arg!r} in any of {collectors!r})" + f"couldn't collect: {arg}\n(no name {arg!r} in any of {collectors!r})" ) else: errors.append(f"found no collectors for {arg}")