Skip to content

Commit dba046f

Browse files
[lldb][nfc] Format python test
1 parent fcbd055 commit dba046f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lldb/test/API/lang/swift/closures_var_not_captured/TestSwiftClosureVarNotCaptured.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,12 @@ def test_async_closure(self):
110110
def test_ctor_class_closure(self):
111111
self.build()
112112
(target, process, thread) = self.get_to_bkpt("break_ctor_class")
113-
check_not_captured_error(self, thread.frames[0], "input", "MY_STRUCT.init(input:)")
114-
check_not_captured_error(self, thread.frames[0], "find_me", "MY_STRUCT.init(input:)")
113+
check_not_captured_error(
114+
self, thread.frames[0], "input", "MY_STRUCT.init(input:)"
115+
)
116+
check_not_captured_error(
117+
self, thread.frames[0], "find_me", "MY_STRUCT.init(input:)"
118+
)
115119
check_no_enhanced_diagnostic(self, thread.frames[0], "dont_find_me")
116120

117121
lldbutil.continue_to_source_breakpoint(

0 commit comments

Comments
 (0)