From 260bd316bf3b8722ddf3b9c11ca54b519466d189 Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Tue, 28 Apr 2020 14:15:17 +0100 Subject: Fix definition of android_stubs_current in sdk tests This change fixes an issue with the definition of the android_stubs_current (and similar) modules in the sdk tests. They were incorrectly defined as java_sdk_library_import and not java_import. Test: m nothing Bug: 155164730 Change-Id: I4e9bfebdd2ff0a374e12284ccdf5ee5518968969 --- sdk/java_sdk_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sdk/java_sdk_test.go') diff --git a/sdk/java_sdk_test.go b/sdk/java_sdk_test.go index c0ad35c3f..788d0166e 100644 --- a/sdk/java_sdk_test.go +++ b/sdk/java_sdk_test.go @@ -46,13 +46,13 @@ java_system_modules_import { java_import { name: "core.platform.api.stubs", } -java_sdk_library_import { +java_import { name: "android_stubs_current", } -java_sdk_library_import { +java_import { name: "android_system_stubs_current", } -java_sdk_library_import { +java_import { name: "android_test_stubs_current", } java_import { -- cgit v1.2.3-59-g8ed1b