This revision was automatically updated to reflect the committed changes.
Closed by commit rL326095: Fix tabs/spaces indentation problem in 
TestUnicodeSymbols.py (authored by amccarth, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D43705?vs=135746&id=135905#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D43705

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


Index: 
lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
===================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
+++ 
lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
@@ -10,10 +10,10 @@
 
     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())


Index: lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
===================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
@@ -10,10 +10,10 @@
 
     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())
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to