Depend on bzl_library, not on individual bzl files (#244)

This commit is contained in:
Laurent Le Brun 2020-04-03 16:54:55 +02:00 committed by GitHub
parent 2d0c651291
commit 9935e0f820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -56,11 +56,11 @@ sh_test(
data = [
":unittest.bash",
":unittest_tests_bzl",
"//lib:dicts.bzl",
"//lib:new_sets.bzl",
"//lib:sets.bzl",
"//lib:types.bzl",
"//lib:unittest.bzl",
"//lib:dicts",
"//lib:new_sets",
"//lib:sets",
"//lib:types",
"//lib:unittest",
"//toolchains/unittest:test_deps",
"@bazel_tools//tools/bash/runfiles",
],