tests: Fixup lit config, which got garbled somehow...

llvm-svn: 113931
diff --git a/libcxx/test/lit.cfg b/libcxx/test/lit.cfg
index 11de5ad..52192a8 100644
--- a/libcxx/test/lit.cfg
+++ b/libcxx/test/lit.cfg
@@ -18,8 +18,9 @@
       FOO.fail.cpp - Negative test case which is expected to fail compilation.
     """
 
-    def __init__(self, cxx_under_test, options): self.cxx_under_test =
-    cxx_under_test self.options = list(options)
+    def __init__(self, cxx_under_test, options):
+        self.cxx_under_test = cxx_under_test
+        self.options = list(options)
 
     def execute_command(self, command):
         p = subprocess.Popen(command, stdin=subprocess.PIPE,