Skip to content

Commit

Permalink
Fix tabs/spaces indentation problem in TestUnicodeSymbols.py
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D43705

llvm-svn: 326095
  • Loading branch information
amccarth-google committed Feb 26, 2018
1 parent e4fae4d commit 69d7434
Showing 1 changed file with 7 additions and 7 deletions.
Expand Up @@ -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())

0 comments on commit 69d7434

Please sign in to comment.