We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59be080 + 9ea094c commit 9f6d5beCopy full SHA for 9f6d5be
fuzz/fuzz_targets/compile_descriptor.rs
@@ -15,7 +15,7 @@ fn do_test(data: &[u8]) {
15
// Compile
16
if let Ok(desc) = pol.compile::<Segwitv0>() {
17
// Lift
18
- assert_eq!(desc.clone().lift().unwrap(), pol.clone().lift().unwrap());
+ assert_eq!(desc.clone().lift().unwrap().sorted(), pol.clone().lift().unwrap().sorted());
19
// Try to roundtrip the output of the compiler
20
let output = desc.to_string();
21
if let Ok(desc) = DummyScript::from_str(&output) {
0 commit comments