diff options
Diffstat (limited to 'java/testing.go')
-rw-r--r-- | java/testing.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java/testing.go b/java/testing.go index 0327963ae..0b1e2eb74 100644 --- a/java/testing.go +++ b/java/testing.go @@ -204,6 +204,13 @@ func GatherRequiredDepsForTest() string { `, extra) } + // Make sure that the dex_bootjars singleton module is instantiated for the tests. + bp += ` + dex_bootjars { + name: "dex_bootjars", + } +` + return bp } |