Fix tabs/spaces indentation problem in TestUnicodeSymbols.py
authorAdrian McCarthy <amccarth@google.com>
Mon, 26 Feb 2018 15:53:31 +0000 (15:53 +0000)
committerAdrian McCarthy <amccarth@google.com>
Mon, 26 Feb 2018 15:53:31 +0000 (15:53 +0000)
Differential Revision: https://reviews.llvm.org/D43705

llvm-svn: 326095

lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py

index 8ca780d..896d4cd 100644 (file)
@@ -10,10 +10,10 @@ class TestUnicodeSymbols(TestBase):
 
     def test_union_members(self):
         self.build()
-       spec = lldb.SBModuleSpec()
-       spec.SetFileSpec(lldb.SBFileSpec(self.getBuildArtifact("a.out")))
-       module = lldb.SBModule(spec)
-       self.assertTrue(module.IsValid())
-       mytype = module.FindFirstType("foobár")
-       self.assertTrue(mytype.IsValid())
-       self.assertTrue(mytype.IsPointerType())
+        spec = lldb.SBModuleSpec()
+        spec.SetFileSpec(lldb.SBFileSpec(self.getBuildArtifact("a.out")))
+        module = lldb.SBModule(spec)
+        self.assertTrue(module.IsValid())
+        mytype = module.FindFirstType("foobár")
+        self.assertTrue(mytype.IsValid())
+        self.assertTrue(mytype.IsPointerType())