We have a loop in `test_utils` that reads a little strange ```rust for (i, c) in (b'A'..b'Z').enumerate() { let key = String::from_utf8(vec![c]).unwrap(); ``` Why is Z excluded?