diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py b/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py index 8ca780d7023..896d4cd8b46 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py @@ -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()) |