Skip to content

Commit 1b1fc38

Browse files
committed
fix builder test
1 parent 38831ca commit 1b1fc38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/builders/rule_builders_tests.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ def _test_rule_api(env):
153153
expect.that_bool(subject.cfg.implementation()).equals(impl)
154154
subject.cfg.add_inputs(Label("//some:input"))
155155
expect.that_collection(subject.cfg.inputs()).contains_exactly([
156-
Label("//some:input"),
156+
str(Label("//some:input")),
157157
])
158158
subject.cfg.add_outputs(Label("//some:output"))
159159
expect.that_collection(subject.cfg.outputs()).contains_exactly([
160-
Label("//some:output"),
160+
str(Label("//some:output")),
161161
])
162162

163163
_basic_tests.append(_test_rule_api)

0 commit comments

Comments
 (0)