Skip to content

Commit 826392e

Browse files
committed
left out
1 parent cd17ffe commit 826392e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/movy-fuzz/src/input.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ impl MoveInput for MoveFuzzInput {
145145
.entry(func.to_string())
146146
.or_default();
147147
for cmp in cmps.iter() {
148-
let tracing::CmpLog(cmp) = cmp else {
148+
let Log::CmpLog(cmp) = cmp else {
149149
continue;
150150
};
151151
if matches!(cmp.op, CmpOp::EQ | CmpOp::GE | CmpOp::LE) {

crates/movy-fuzz/src/mutators/arg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ where
141141
let mut cmp_constraints = target_function_logs
142142
.iter()
143143
.filter_map(|log| match log {
144-
tracing::CmpLog(cmp) => cmp.constraint.clone(),
144+
Log::CmpLog(cmp) => cmp.constraint.clone(),
145145
_ => None,
146146
})
147147
.collect::<Vec<_>>();

0 commit comments

Comments
 (0)