cargo fmt

This commit is contained in:
elipeter 2026-05-21 14:35:42 -05:00
parent bec7bbf96c
commit 3a35cd6c8f
294 changed files with 6809 additions and 3911 deletions

View file

@ -17,9 +17,9 @@
#![cfg(feature = "dynamic")]
use nyx_scanner::dynamic::oracle::{oracle_fired, Oracle, ProbePredicate};
use nyx_scanner::dynamic::oracle::{Oracle, ProbePredicate, oracle_fired};
use nyx_scanner::dynamic::probe::{
ProbeArg, ProbeChannel, ProbeKind, ProbeWitness, SinkProbe, PROBE_PATH_ENV,
PROBE_PATH_ENV, ProbeArg, ProbeChannel, ProbeKind, ProbeWitness, SinkProbe,
};
use std::time::Duration;
use tempfile::TempDir;
@ -59,7 +59,9 @@ fn synthetic_harness_fires_probe(
kind: ProbeKind::Normal,
witness: ProbeWitness::empty(),
};
channel.write(&probe).expect("synthetic harness probe write");
channel
.write(&probe)
.expect("synthetic harness probe write");
}
/// "Control" harness — runs the same way but does NOT write a probe.