From 93ea210c469a0fcdc68750f344e2e0ad88501b2d Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sat, 6 Jan 2024 23:34:37 +0100 Subject: [PATCH] fix error --- psutil/tests/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psutil/tests/test_process.py b/psutil/tests/test_process.py index 3594bbfc1c..0418fd54ed 100755 --- a/psutil/tests/test_process.py +++ b/psutil/tests/test_process.py @@ -81,7 +81,7 @@ def spawn_psproc(self, *args, **kwargs): try: return psutil.Process(sproc.pid) except psutil.NoSuchProcess: - self.assertProcessGone(sproc.pid) + self.assertPidGone(sproc.pid) raise # ---