Skip to content

Commit

Permalink
style: Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Nov 1, 2024
1 parent 0ca085a commit a28405f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/anstyle-parse/tests/testsuite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ advance!(
fn gen_exceed_max_buffer_size() -> (Vec<u8>, Dispatcher) {
static NUM_BYTES: usize = MAX_OSC_RAW + 100;
static INPUT_START: &[u8] = &[0x1b, b']', b'5', b'2', b';', b's'];
static INPUT_END: &[u8] = &[b'\x07'];
static INPUT_END: &[u8] = b"\x07";
let mut input = INPUT_START.to_vec();
input.resize(INPUT_START.len() + NUM_BYTES, b'a');
input.extend(INPUT_END);
Expand Down

0 comments on commit a28405f

Please sign in to comment.