Skip to content

Commit 2350fbc

Browse files
committed
uglification
1 parent 7fe3b6a commit 2350fbc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,10 @@ def test_scope_lookup_with_run_command(self):
167167
self.runToBkpt("continue")
168168
# FIXME: In DWARF 5 with dsyms, the ordering of functions is slightly
169169
# different, which also hits the same issues mentioned previously.
170-
if int(lldbplatformutil.getDwarfVersion()) <= 4 or self.getDebugInfo() == "dwarf":
170+
if (
171+
int(lldbplatformutil.getDwarfVersion()) <= 4
172+
or self.getDebugInfo() == "dwarf"
173+
):
171174
self.expect_expr("func()", result_type="int", result_value="2")
172175

173176
# Continue to BP_ns_scope at ns scope

0 commit comments

Comments
 (0)