test(theme): skip comparing palette.bright.surface

This commit is contained in:
Rudxain 2024-12-07 23:57:05 -04:00
commit f151f54df4
No known key found for this signature in database
GPG key ID: 0DAC837DDEF8E96C

View file

@ -599,7 +599,9 @@ mod tests {
assert_ne!(palette.normal.primary, Color::BLACK);
assert_ne!(palette.normal.surface, Color::BLACK);
assert_ne!(palette.bright.primary, Color::BLACK);
assert_ne!(palette.bright.surface, Color::BLACK);
// if `LIGHT` then this can be `BLACK`
// https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/pull/730#issuecomment-2525405134
//assert_ne!(palette.bright.surface, Color::BLACK);
assert_ne!(palette.normal.error, Color::BLACK);
assert_ne!(palette.bright.error, Color::BLACK);
}