Skip to content

Commit c0110bc

Browse files
adrian-prantldvbuka
authored andcommitted
[lldb] Add missing function call in test (NFC)
1 parent 3566137 commit c0110bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def run_arch(self, exe, arch):
4040
launch_info = target.GetLaunchInfo()
4141
error = lldb.SBError()
4242
process = target.Launch(launch_info, error)
43-
self.assertTrue(error.Success, str(error))
43+
self.assertTrue(error.Success(), str(error))
4444
self.assertState(process.GetState(), lldb.eStateExited)
4545
self.assertIn("slice: {}".format(arch), process.GetSTDOUT(1000))
4646

0 commit comments

Comments
 (0)