From 322a0f0a331494746c20a56f7776aec1f08d9240 Mon Sep 17 00:00:00 2001 From: Tomer Keren Date: Thu, 9 May 2019 19:12:58 +0300 Subject: [PATCH] Fix mention of issue #5062 in docstrings --- src/_pytest/assertion/rewrite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/assertion/rewrite.py b/src/_pytest/assertion/rewrite.py index bb3d36a9c..5690e0e33 100644 --- a/src/_pytest/assertion/rewrite.py +++ b/src/_pytest/assertion/rewrite.py @@ -990,7 +990,7 @@ warn_explicit( return res, outer_expl def _visit_all(self, call): - """Special rewrite for the builtin all function, see #5602""" + """Special rewrite for the builtin all function, see #5062""" if not isinstance(call.args[0], (ast.GeneratorExp, ast.ListComp)): return gen_exp = call.args[0]