Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit a464f61

Browse files
committed
flatten providers lists
1 parent 18244ea commit a464f61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scala/scala.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ _common_attrs_for_plugin_bootstrapping = {
131131
_collect_plus_one_deps_aspect,
132132
_coverage_replacements_provider.aspect,
133133
],
134-
providers = [[JavaInfo]],
134+
providers = [JavaInfo],
135135
),
136136
"plugins": attr.label_list(allow_files = [".jar"]),
137-
"runtime_deps": attr.label_list(providers = [[JavaInfo]]),
137+
"runtime_deps": attr.label_list(providers = [JavaInfo]),
138138
"data": attr.label_list(allow_files = True),
139139
"resources": attr.label_list(allow_files = True),
140140
"resource_strip_prefix": attr.string(),
@@ -683,7 +683,7 @@ _scala_junit_test_attrs.update(_common_attrs)
683683
_scala_junit_test_attrs.update(_junit_resolve_deps)
684684

685685
_scala_junit_test_attrs.update({
686-
"tests_from": attr.label_list(providers = [[JavaInfo]]),
686+
"tests_from": attr.label_list(providers = [JavaInfo]),
687687
})
688688

689689
scala_junit_test = rule(

0 commit comments

Comments
 (0)