Skip to content

Commit

Permalink
better test fn name
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmayer committed Nov 11, 2024
1 parent a73ea3b commit a4c4de3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,22 +160,22 @@ where
}

#[test]
fn test_enc_dec_u8_normal() {
fn test_enc_dec_u8_standard() {
test_enc_dec_generic::<u8, StamdardEncoding<W, u8>, W>()
}

#[test]
fn test_enc_dec_u16_normal() {
fn test_enc_dec_u16_standard() {
test_enc_dec_generic::<u16, StamdardEncoding<W, u16>, W>()
}

#[test]
fn test_enc_dec_u32_normal() {
fn test_enc_dec_u32_standard() {
test_enc_dec_generic::<u32, StamdardEncoding<W, u32>, W>()
}

#[test]
fn test_enc_dec_u64_normal() {
fn test_enc_dec_u64_standard() {
test_enc_dec_generic::<u64, StamdardEncoding<W, u64>, W>()
}

Expand Down

0 comments on commit a4c4de3

Please sign in to comment.