Fixed test for asyncore.
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py
index 36096ef..facc83e 100644
--- a/Lib/test/test_asyncore.py
+++ b/Lib/test/test_asyncore.py
@@ -38,7 +38,7 @@
         raise asyncore.ExitNow()
 
     handle_write_event = handle_read_event
-    handle_close_event = handle_read_event
+    handle_close = handle_read_event
     handle_expt_event = handle_read_event
 
 class crashingdummy:
@@ -49,7 +49,7 @@
         raise Exception()
 
     handle_write_event = handle_read_event
-    handle_close_event = handle_read_event
+    handle_close = handle_read_event
     handle_expt_event = handle_read_event
 
     def handle_error(self):
@@ -128,7 +128,7 @@
                 def handle_write_event(self):
                     self.write = True
 
-                def handle_close_event(self):
+                def handle_close(self):
                     self.closed = True
 
                 def handle_expt_event(self):