diff --git a/tools/aconfig/src/dump.rs b/tools/aconfig/src/dump.rs index bcad064a52..858d14ae91 100644 --- a/tools/aconfig/src/dump.rs +++ b/tools/aconfig/src/dump.rs @@ -45,7 +45,6 @@ impl TryFrom<&str> for DumpFormat { "{fully_qualified_name} [{container}]: {permission} + {state} ({trace:paths})" .to_owned(), )), - "bool" => Ok(Self::Custom("{fully_qualified_name}={state:bool}".to_owned())), // custom format _ => Ok(Self::Custom(value.to_owned())), @@ -280,10 +279,6 @@ mod tests { "verbose", "com.android.aconfig.test.enabled_ro [system]: READ_ONLY + ENABLED (tests/test.aconfig, tests/first.values, tests/second.values)" ); - assert_dump_parsed_flags_custom_format_contains!( - "bool", - "com.android.aconfig.test.enabled_ro=true" - ); } #[test]