Fixed parent class init
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index 38af35a..513e1f3 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -517,7 +517,7 @@
     """
 
     def __init__(self, errors='strict'):
-        codecs.IncrementalEncoder.__init__(self, errors)
+        codecs.IncrementalDecoder.__init__(self, errors)
         self.reset()
 
     def __repr__(self):