From 85955d691c55da8428d3a8473512c3af03d8524f Mon Sep 17 00:00:00 2001 From: "d.grigonis" Date: Tue, 7 Jan 2025 16:12:01 +0200 Subject: [PATCH] comment update --- Lib/test/test_functools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index 271778df268adc..eb5ee31fd16a3f 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -235,7 +235,7 @@ def test_placeholders(self): self.assertEqual(actual_args, ('x', 0, 'y', 1)) self.assertEqual(actual_kwds, {}) # Checks via `is` and not `eq` - # thus unittest.mock.ANY isn't treated as Placeholder + # thus ALWAYS_EQ isn't treated as Placeholder p = self.partial(capture, ALWAYS_EQ) actual_args, actual_kwds = p() self.assertEqual(len(actual_args), 1)