Skip to content

Commit 684f64c

Browse files
authored
[lldb] [test-suite] fix typo in variable in darwin builder (#169254)
While taking a look at the code of lldb test-suite packages, I have noticed that in `get_triple_str` in `darwin.py` env is added inside a `components` list, which is probably supposed to be `component` (defined on the line 61). Signed-off-by: Nikita B <[email protected]>
1 parent 72e51d3 commit 684f64c

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/builders

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/builders/darwin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_triple_str(arch, vendor, os, version, env):
6060

6161
component = [arch, vendor, os + version]
6262
if env:
63-
components.append(env)
63+
component.append(env)
6464
return "-".join(component)
6565

6666

0 commit comments

Comments
 (0)