| commit | 9ab9711e7fc4d727c4904fb42d44e4badc7f47f9 | [log] [tgz] |
|---|---|---|
| author | Jeff Sharkey <jsharkey@android.com> | Tue Aug 28 19:09:12 2018 -0600 |
| committer | Jeff Sharkey <jsharkey@google.com> | Wed Aug 29 16:21:50 2018 +0000 |
| tree | 59e754ee6458e4aab5f1a0279c025afdd8424d54 | |
| parent | 27fcf48f147007f78cf70e57b7a4d495519c674e [diff] |
Fix constant used by test. Bug: 111854851 Change-Id: I6ea9bb5b73d7e9133f78cdc1431f180664b5eae7
diff --git a/cmds/installd/tests/installd_service_test.cpp b/cmds/installd/tests/installd_service_test.cpp index a5af5d7..5e6e933 100644 --- a/cmds/installd/tests/installd_service_test.cpp +++ b/cmds/installd/tests/installd_service_test.cpp
@@ -37,7 +37,7 @@ constexpr const char* kTestUuid = "TEST"; -static constexpr int FLAG_FORCE = 1 << 16; +static constexpr int FLAG_FORCE = 0x2000; int get_property(const char *key, char *value, const char *default_value) { return property_get(key, value, default_value);