fmt: rustfmt vec literal wrapping + signature collapse

This commit is contained in:
Razvan Dimescu
2026-04-19 06:24:54 +03:00
parent 61ea2e510d
commit d6bb9a0f01
2 changed files with 7 additions and 7 deletions

View File

@@ -1285,7 +1285,9 @@ mod tests {
(1, vec![0x02, b'h', b'3']),
(
6,
vec![0x26, 0x06, 0x47, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01],
vec![
0x26, 0x06, 0x47, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01,
],
),
],
);
@@ -1342,7 +1344,9 @@ mod tests {
&[],
&[(
6,
vec![0x26, 0x06, 0x47, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01],
vec![
0x26, 0x06, 0x47, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01,
],
)],
);