Skip to content

Commit 52ca089

Browse files
committed
fixup! python format
1 parent be4c4c1 commit 52ca089

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

lldb/test/API/lang/cpp/typedef-to-outer-fwd/TestTypedefToOuterFwd.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@
55

66

77
class TestCaseTypedefToOuterFwd(TestBase):
8-
'''
8+
"""
99
We are stopped in main.o, which only sees a forward declaration
1010
of FooImpl. We then try to get the FooImpl::Ref typedef (whose
1111
definition is in lib.o). Make sure we correctly resolve this
1212
typedef.
13-
'''
13+
"""
14+
1415
def test(self):
1516
self.build()
1617
(_, _, thread, _) = lldbutil.run_to_source_breakpoint(
1718
self, "return", lldb.SBFileSpec("main.cpp")
1819
)
1920

20-
foo = thread.frames[0].FindVariable('foo')
21+
foo = thread.frames[0].FindVariable("foo")
2122
self.assertSuccess(foo.GetError(), "Found foo")
2223

2324
foo_type = foo.GetType()
@@ -26,7 +27,7 @@ def test(self):
2627
impl = foo_type.GetPointeeType()
2728
self.assertTrue(impl)
2829

29-
ref = impl.FindDirectNestedType('Ref')
30+
ref = impl.FindDirectNestedType("Ref")
3031
self.assertTrue(ref)
3132

3233
self.assertEqual(ref.GetCanonicalType(), foo_type)

0 commit comments

Comments
 (0)