Skip to content

Commit 459602f

Browse files
committed
Add missing f-prefix to format string
1 parent 9705638 commit 459602f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/lang/swift/exception_breakpoint_recognizer/TestSwiftExceptionBreakpointRecognizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test(self):
1212
bp = target.BreakpointCreateForException(lldb.eLanguageTypeSwift, False, True)
1313

1414
log_file = self.getBuildArtifact("symbol.log")
15-
self.runCmd("log enable lldb symbol -f {log_file}")
15+
self.runCmd(f"log enable lldb symbol -f {log_file}")
1616

1717
# First breakpoint in an untyped throws function.
1818
_, process, _, _ = lldbutil.run_to_breakpoint_do_run(self, target, bp)

0 commit comments

Comments
 (0)