diff options
| author | 2023-05-12 13:49:17 +0000 | |
|---|---|---|
| committer | 2023-05-12 13:49:17 +0000 | |
| commit | b98da74c1b5f67b0cca16dfdddca6a5d8de10718 (patch) | |
| tree | 702943c501db385d5d2584476bfafc972ebe2daf /java/testing.go | |
| parent | 1e73815c3fafcd75268716e12f78784bb4364202 (diff) | |
| parent | 7ba1ca0ac3f08cfda1d5455ed194123ac654bf03 (diff) | |
Unify installDirOnHost and installDirOnDevice. am: 7ba1ca0ac3
Original change: https://googleplex-android-review.googlesource.com/c/platform/build/soong/+/23208461
Change-Id: Ib274dc7a928b6afbabbf20eec30943580609c1d0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'java/testing.go')
| -rw-r--r-- | java/testing.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/testing.go b/java/testing.go index 4ff2aa497..6671bf0c7 100644 --- a/java/testing.go +++ b/java/testing.go @@ -610,9 +610,9 @@ func FixtureModifyBootImageConfig(name string, configModifier func(*bootImageCon }) } -// Sets the value of `installDirOnDevice` of the boot image config with the given name. +// Sets the value of `installDir` of the boot image config with the given name. func FixtureSetBootImageInstallDirOnDevice(name string, installDir string) android.FixturePreparer { return FixtureModifyBootImageConfig(name, func(config *bootImageConfig) { - config.installDirOnDevice = installDir + config.installDir = installDir }) } |