layout alignment: restore/ini headers, info_dialog, ini restore header, yellow highlights

This commit is contained in:
2026-06-09 16:02:25 +02:00
parent 56a4b7ac16
commit b2fc557e4f
3 changed files with 160 additions and 61 deletions
+2 -3
View File
@@ -654,9 +654,8 @@ mod tests {
let path = dir.path().join("test.tar.gz");
// Write a minimal valid gzip file (20 bytes of gzip stream)
let valid_gzip = [
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00,
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
];
fs::write(&path, &valid_gzip).unwrap();
assert!(check_tar_gz_integrity(&path));