test_capi: make a specific test case for the subinterpreter test
(it was wrongly classified in the pending calls test case)
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index f1ea5a9..62827e5 100644
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -193,6 +193,9 @@
         self.pendingcalls_submit(l, n)
         self.pendingcalls_wait(l, n)
 
+
+class SubinterpreterTest(unittest.TestCase):
+
     def test_subinterps(self):
         import builtins
         r, w = os.pipe()
@@ -208,6 +211,7 @@
             self.assertNotEqual(pickle.load(f), id(sys.modules))
             self.assertNotEqual(pickle.load(f), id(builtins))
 
+
 # Bug #6012
 class Test6012(unittest.TestCase):
     def test(self):
@@ -354,7 +358,8 @@
 
 def test_main():
     support.run_unittest(CAPITest, TestPendingCalls, Test6012,
-                         EmbeddingTest, SkipitemTest, TestThreadState)
+                         EmbeddingTest, SkipitemTest, TestThreadState,
+                         SubinterpreterTest)
 
     for name in dir(_testcapi):
         if name.startswith('test_'):