Add missing empty line, and remove extra one
Make all tests functions have a single blank line between them
This commit is contained in:
parent
0afe65f01f
commit
afa51f7bfa
|
@ -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]);
|
||||||
|
|
Loading…
Reference in New Issue