max / makeover
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
1 file changed,
+4 insertions,
-1 deletion
| @@ -1532,7 +1532,10 @@ | |||
| 1532 | 1532 | let border = Rgb::from_hex("#b4b4b4").unwrap(); | |
| 1533 | 1533 | ||
| 1534 | 1534 | assert_eq!(quantize(page, &ANSI_16), quantize(border, &ANSI_16)); | |
| 1535 | - | assert!(quantize_against(border, page, &ANSI_16) != quantize(page, &ANSI_16)); | |
| 1535 | + | assert_ne!( | |
| 1536 | + | quantize_against(border, page, &ANSI_16), | |
| 1537 | + | quantize(page, &ANSI_16) | |
| 1538 | + | ); | |
| 1536 | 1539 | } | |
| 1537 | 1540 | ||
| 1538 | 1541 | #[test] |