Fix a typo.
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index b00e780..685857d 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -471,7 +471,7 @@
         self.assertStderrEqual(stderr.encode(), b"pineapple\npear\n")
 
     def test_communicate_timeout_large_ouput(self):
-        # Test a expring timeout while the child is outputting lots of data.
+        # Test an expiring timeout while the child is outputting lots of data.
         p = subprocess.Popen([sys.executable, "-c",
                               'import sys,os,time;'
                               'sys.stdout.write("a" * (64 * 1024));'