Add missing empty line, and remove extra one

Make all tests functions have a single blank line between them
This commit is contained in:
Jamil Lambert, PhD 2025-04-15 11:15:18 +01:00 committed by Jamil Lambert
parent 0afe65f01f
commit afa51f7bfa
No known key found for this signature in database
GPG Key ID: 7F574053F8F17A64
1 changed files with 1 additions and 1 deletions

View File

@ -725,6 +725,7 @@ mod tests {
let script = ScriptBuf::from(vec![0x51; 521]); let script = ScriptBuf::from(vec![0x51; 521]);
assert!(ScriptHash::try_from(&script).is_err()); assert!(ScriptHash::try_from(&script).is_err());
} }
#[test] #[test]
fn try_from_script_for_scripthash() { fn try_from_script_for_scripthash() {
let script = Script::from_bytes(&[0x51; 520]); let script = Script::from_bytes(&[0x51; 520]);
@ -752,7 +753,6 @@ mod tests {
assert!(WScriptHash::try_from(&script).is_err()); assert!(WScriptHash::try_from(&script).is_err());
} }
#[test] #[test]
fn try_from_script_for_wscript_hash() { fn try_from_script_for_wscript_hash() {
let script = Script::from_bytes(&[0x51; 10_000]); let script = Script::from_bytes(&[0x51; 10_000]);