2
0
Fork 0
mirror of https://github.com/bazelbuild/bazel-skylib synced 2024-11-28 08:43:51 +00:00

Fix misspelled testonly attribute

This commit is contained in:
Tony Allevato 2017-10-31 07:02:01 -07:00 committed by Tony Allevato
parent 82b3ad6e9e
commit 975e852801

View file

@ -3,6 +3,6 @@ licenses(["notice"])
filegroup( filegroup(
name = "test_deps", name = "test_deps",
srcs = ["BUILD"] + glob(["*.bzl"]), srcs = ["BUILD"] + glob(["*.bzl"]),
test_only = True, testonly = True,
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )