Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 09b49f9

Browse files
committed
Lowercase test function name
For some reason we have a test function named in all caps. This is unusual and non-idiomatic Rust. Re-name test function `HMAC_SHA512` by lowercasing the name.
1 parent fb2be02 commit 09b49f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extended_tests/schemars/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mod tests {
2323
}
2424

2525
#[test]
26-
fn HMAC_SHA512() {
26+
fn hmac_sha512() {
2727
static HASH_BYTES: [u8; 64] = [
2828
0x8b, 0x41, 0xe1, 0xb7, 0x8a, 0xd1, 0x15, 0x21, 0x11, 0x3c, 0x52, 0xff, 0x18, 0x2a,
2929
0x1b, 0x8e, 0x0a, 0x19, 0x57, 0x54, 0xaa, 0x52, 0x7f, 0xcd, 0x00, 0xa4, 0x11, 0x62,

0 commit comments

Comments
 (0)