Skip to content

Commit f6b4e0a

Browse files
Remove library attributes from dependency export libraries
1 parent 8436a42 commit f6b4e0a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

java/private/create_jvm_test_suite.bzl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,15 @@ def create_jvm_test_suite(
9898
exports = deps,
9999
visibility = ["//visibility:private"],
100100
tags = tags,
101-
testonly = True,
102-
**library_attrs
101+
testonly = True
103102
)
104103
runtime_deps_lib_name = "%s-test-runtime-deps-lib" % name
105104
define_library(
106105
name = runtime_deps_lib_name,
107106
exports = runtime_deps,
108107
visibility = ["//visibility:private"],
109108
tags = tags,
110-
testonly = True,
111-
**library_attrs
109+
testonly = True
112110
)
113111

114112
for src in test_srcs:

0 commit comments

Comments
 (0)