Fix issue with nested test suites debug method and module setups. (unittest)
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py
index 04d35b8..8602107 100644
--- a/Lib/unittest/suite.py
+++ b/Lib/unittest/suite.py
@@ -112,7 +112,7 @@
                     continue
 
             if hasattr(test, '_wrapped_run'):
-                test._wrapped_run(result)
+                test._wrapped_run(result, debug)
             elif not debug:
                 test(result)
             else: