From 052058fa147419d9b48b02f04a8d0fe6c27a74b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Fran=C3=A7ois=20Natali?= Date: Fri, 25 Oct 2013 17:49:47 +0200 Subject: test_selectors: rename test_interrupted_retry() (since it doesn't actually retry on EINTR). --- Lib/test/test_selectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py index 6ce4d8a..ca09851 100644 --- a/Lib/test/test_selectors.py +++ b/Lib/test/test_selectors.py @@ -279,7 +279,7 @@ class BaseSelectorTestCase(unittest.TestCase): @unittest.skipUnless(hasattr(signal, "alarm"), "signal.alarm() required for this test") - def test_interrupted_retry(self): + def test_select_interrupt(self): s = self.SELECTOR() self.addCleanup(s.close) -- cgit v0.12