diff options
| author | 2023-05-12 14:54:10 +0000 | |
|---|---|---|
| committer | 2023-05-12 14:54:10 +0000 | |
| commit | 8922cd21b60d0a794832e582417af6b0fa548b1b (patch) | |
| tree | 702943c501db385d5d2584476bfafc972ebe2daf /java/testing.go | |
| parent | 0c41194d88bdca227049c536d4d5f1b11424c997 (diff) | |
| parent | b98da74c1b5f67b0cca16dfdddca6a5d8de10718 (diff) | |
Unify installDirOnHost and installDirOnDevice. am: 7ba1ca0ac3 am: b98da74c1b
Original change: https://googleplex-android-review.googlesource.com/c/platform/build/soong/+/23208461
Change-Id: I5a9aa7159ac2ea5b414216926d889599ee33905d
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 }) } |