Whitespace normalization.
diff --git a/Lib/test/test_profile.py b/Lib/test/test_profile.py
index 1b1f50b..e0bda5c 100644
--- a/Lib/test/test_profile.py
+++ b/Lib/test/test_profile.py
@@ -86,14 +86,14 @@
 
 
 def test_2():
-        d = globals().copy()
-        def testfunc():
-            global x
-            x = 1
-        d['testfunc'] = testfunc
-        profile.runctx("testfunc()", d, d, TESTFN)
-        vereq (x, 1)
-        os.unlink (TESTFN)
+    d = globals().copy()
+    def testfunc():
+        global x
+        x = 1
+    d['testfunc'] = testfunc
+    profile.runctx("testfunc()", d, d, TESTFN)
+    vereq (x, 1)
+    os.unlink (TESTFN)
 
 if __name__ == "__main__":
     test_main()