diff options
author | 2024-07-23 13:29:48 +0900 | |
---|---|---|
committer | 2024-07-23 14:03:03 +0900 | |
commit | f4889dbc886e145f74e5ac0475660a037520ee96 (patch) | |
tree | 51d859fee412a79cc4f8681f0803f961b06baf53 /android/module_test.go | |
parent | 081aaa9571c39a10da3dad2ac9c67b127594db03 (diff) |
Make the defaults property configurable
This allows using select statements with it.
Bug: 354824866
Test: m
Change-Id: I673df0869a68c2e79b19c577d0ae1ff2249388db
Diffstat (limited to 'android/module_test.go')
-rw-r--r-- | android/module_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/android/module_test.go b/android/module_test.go index 922ea21fe..829c07987 100644 --- a/android/module_test.go +++ b/android/module_test.go @@ -722,7 +722,6 @@ test { propInfo{Name: "Arch.X86_64.A", Type: "string", Value: "x86_64 a"}, propInfo{Name: "B", Type: "bool", Value: "true"}, propInfo{Name: "C", Type: "string slice", Values: []string{"default_c", "c"}}, - propInfo{Name: "Defaults", Type: "string slice", Values: []string{"foo_defaults"}}, propInfo{Name: "Embedded_prop", Type: "string", Value: "a"}, propInfo{Name: "Name", Type: "string", Value: "foo"}, propInfo{Name: "Nested.E", Type: "string", Value: "nested e"}, @@ -746,7 +745,6 @@ test { foo := result.ModuleForTests("foo", "").Module().base() AssertDeepEquals(t, "foo ", tc.expectedProps, foo.propertiesWithValues()) - }) } } |