Fix typos in tests names.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pedro de Oliveira 2023-04-30 05:40:27 +01:00
parent 2e69a157f1
commit 544e26676c
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ fn block_0_sound_data_test() {
} }
#[test] #[test]
fn blocks_1_to_457_terminator_test() { fn blocks_1_to_457_sound_data_continuation_test() {
let (_, voc) = parse_voc(VOC_CONTENTS).unwrap(); let (_, voc) = parse_voc(VOC_CONTENTS).unwrap();
for idx in 1..457 { for idx in 1..457 {
assert!(matches!( assert!(matches!(
@ -49,7 +49,7 @@ fn blocks_1_to_457_terminator_test() {
} }
#[test] #[test]
fn block_69_sound_data_continuation() { fn block_69_sound_data_continuation_test() {
let (_, voc) = parse_voc(VOC_CONTENTS).unwrap(); let (_, voc) = parse_voc(VOC_CONTENTS).unwrap();
if let BlockType::SoundDataContinuation { data } = &voc.blocks[1] { if let BlockType::SoundDataContinuation { data } = &voc.blocks[1] {
assert_eq!(data.len(), 500); assert_eq!(data.len(), 500);