Skip to content

Commit a9d5d89

Browse files
committed
Fix typo
1 parent 1a7f5b9 commit a9d5d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/proc_macro/leaks_deps/proc_macro_does_not_leak_deps.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def _proc_macro_does_not_leak_deps_impl(ctx):
2222
asserts.equals(env, 0, len(proc_macro_dep_inputs))
2323
asserts.equals(env, 0, len(proc_macro_dep_args))
2424

25-
link_arg_prefix = "-Clink-arg=native" if ctx.target_platform_has_constraint(ctx.attr._windows_constraint[platform_common.ConstrainValueInfo]) else "-Clink-arg=-lnative"
25+
link_arg_prefix = "-Clink-arg=native" if ctx.target_platform_has_constraint(ctx.attr._windows_constraint[platform_common.ConstraintValueInfo]) else "-Clink-arg=-lnative"
2626

2727
# Our test target depends on proc_macro_dep:native directly, as well as transitively through the
2828
# proc_macro. The proc_macro should not leak its dependency, so we should only get the "native"

0 commit comments

Comments
 (0)