Skip to content

Commit a28405f

Browse files
committed
style: Make clippy happy
1 parent 0ca085a commit a28405f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/anstyle-parse/tests/testsuite.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ advance!(
244244
fn gen_exceed_max_buffer_size() -> (Vec<u8>, Dispatcher) {
245245
static NUM_BYTES: usize = MAX_OSC_RAW + 100;
246246
static INPUT_START: &[u8] = &[0x1b, b']', b'5', b'2', b';', b's'];
247-
static INPUT_END: &[u8] = &[b'\x07'];
247+
static INPUT_END: &[u8] = b"\x07";
248248
let mut input = INPUT_START.to_vec();
249249
input.resize(INPUT_START.len() + NUM_BYTES, b'a');
250250
input.extend(INPUT_END);

0 commit comments

Comments
 (0)