diff options
author | 2025-01-31 17:02:52 -0800 | |
---|---|---|
committer | 2025-01-31 17:02:52 -0800 | |
commit | 536ad66134dbc54b46be3f35cc563f1db67594ac (patch) | |
tree | 264b7203f28be06bfafa06806aae9c1f8c8d144a /java/plugin_test.go | |
parent | 52dc1a7f9533c82d27a2c75cfabd0cbeb763f6ac (diff) | |
parent | d5c643112afa3e935e112a7e87705b5398d3532b (diff) |
Merge changes I39a75dab,I4c6640e7,I931216a5 into main
* changes:
Return android.Module from BottomUpMutatorContext methods
Add t.Parallel() to java tests
Run gofmt -w .
Diffstat (limited to 'java/plugin_test.go')
-rw-r--r-- | java/plugin_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/plugin_test.go b/java/plugin_test.go index dc29b1c3e..95f4aca4c 100644 --- a/java/plugin_test.go +++ b/java/plugin_test.go @@ -19,6 +19,7 @@ import ( ) func TestNoPlugin(t *testing.T) { + t.Parallel() ctx, _ := testJava(t, ` java_library { name: "foo", @@ -43,6 +44,7 @@ func TestNoPlugin(t *testing.T) { } func TestPlugin(t *testing.T) { + t.Parallel() ctx, _ := testJava(t, ` java_library { name: "foo", @@ -82,6 +84,7 @@ func TestPlugin(t *testing.T) { } func TestPluginGeneratesApi(t *testing.T) { + t.Parallel() ctx, _ := testJava(t, ` java_library { name: "foo", |