Skip to content

Commit 4e813a9

Browse files
committed
try upgrading bazel
1 parent a4d778f commit 4e813a9

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

rules_java_gapic/java_gapic.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,13 +373,12 @@ def java_gapic_library(
373373
**kwargs
374374
)
375375

376-
def java_gapic_test(name, runtime_deps, test_classes, jvm_flags =[], **kwargs):
376+
def java_gapic_test(name, runtime_deps, test_classes, **kwargs):
377377
for test_class in test_classes:
378378
native.java_test(
379379
name = test_class,
380380
test_class = test_class,
381381
runtime_deps = runtime_deps,
382-
jvm_flags = jvm_flags,
383382
**kwargs
384383
)
385384
native.test_suite(

test/integration/BUILD.bazel

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ java_gapic_test(
9393
test_classes = [
9494
"com.google.storage.v2.StorageClientTest",
9595
],
96-
jvm_flags = [
97-
"-Xmx1G", # or any valid value
98-
# No -Djava.security.manager here!
99-
],
10096
runtime_deps = ["@com_google_googleapis//google/storage/v2:storage_java_gapic_test"],
10197
)
10298

0 commit comments

Comments
 (0)