summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/BUILD
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2019-06-18 09:37:51 +0200
committerDavid Pursehouse <david.pursehouse@gmail.com>2019-07-16 12:10:31 +0900
commitbbef67e8d02e9baff1d23f98e7252ebba1221b84 (patch)
tree7b6e0f1389a0f1eb26de364ef8fb16bda0398e08 /org.eclipse.jgit.test/BUILD
parent74da1b2701fc3f736e53b25936dd566889097f8e (diff)
downloadjgit-bbef67e8d02e9baff1d23f98e7252ebba1221b84.tar.gz
jgit-bbef67e8d02e9baff1d23f98e7252ebba1221b84.zip
Bazel: Fix lint warning flagged by buildifier
This change is fixing confusing name warning: [1]. ./org.eclipse.jgit.test/tests.bzl:12: confusing-name: Never use 'l', 'I', or 'O' as names (they're too easily confused with 'I', 'l', or '0'). And is also fixing: "All calls to rules or macros should pass arguments by keyword position argument" warning: [2]. ./org.eclipse.jgit.test/BUILD:42: positional-args: All calls to rules or macros should pass arguments by keyword (arg_name=value) syntax. [1] https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#confusing-name [2] https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#positional-args Change-Id: If5c28ec8a1ddc1d1b1035bd07b838a2a564aea4f Signed-off-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'org.eclipse.jgit.test/BUILD')
-rw-r--r--org.eclipse.jgit.test/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/BUILD b/org.eclipse.jgit.test/BUILD
index ac8c1914f1..b06778eed0 100644
--- a/org.eclipse.jgit.test/BUILD
+++ b/org.eclipse.jgit.test/BUILD
@@ -30,7 +30,7 @@ DATA = [
PKG + "lib/sorttest.gitindex.dat",
]
-tests(glob(
+tests(tests = glob(
["tst/**/*.java"],
exclude = HELPERS + DATA,
))