diff options
author | 2025-02-10 16:23:24 -0800 | |
---|---|---|
committer | 2025-02-13 08:28:46 -0800 | |
commit | 6d8fc1058d81e2e989c82b8e1e0c53278a3fb8f1 (patch) | |
tree | 29f6090fd5ee12545c83dc6e9ff48398e23c63f5 /android/config_test.go | |
parent | 825f8ff59cd7f3091e779a91ee54cf916dd16664 (diff) |
config: make partialCompileFlags visible
Other modules need to check partialCompileFlags values.
Bug: b/374975543
Test: manual, TH
Change-Id: Id8dcbc64506561cb9d1c26e7b53f193d306e0562
Diffstat (limited to 'android/config_test.go')
-rw-r--r-- | android/config_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/config_test.go b/android/config_test.go index 4fdcc9ca4..4bdf05f0e 100644 --- a/android/config_test.go +++ b/android/config_test.go @@ -214,12 +214,12 @@ func TestConfiguredJarList(t *testing.T) { } func (p partialCompileFlags) updateEnabled(value bool) partialCompileFlags { - p.enabled = value + p.Enabled = value return p } func (p partialCompileFlags) updateUseD8(value bool) partialCompileFlags { - p.use_d8 = value + p.Use_d8 = value return p } |