We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38831ca commit 1b1fc38Copy full SHA for 1b1fc38
tests/builders/rule_builders_tests.bzl
@@ -153,11 +153,11 @@ def _test_rule_api(env):
153
expect.that_bool(subject.cfg.implementation()).equals(impl)
154
subject.cfg.add_inputs(Label("//some:input"))
155
expect.that_collection(subject.cfg.inputs()).contains_exactly([
156
- Label("//some:input"),
+ str(Label("//some:input")),
157
])
158
subject.cfg.add_outputs(Label("//some:output"))
159
expect.that_collection(subject.cfg.outputs()).contains_exactly([
160
- Label("//some:output"),
+ str(Label("//some:output")),
161
162
163
_basic_tests.append(_test_rule_api)
0 commit comments