Commit ec55ef9
committed
ci(fuzz): fix stale fuzz target (pop_redo returns Option, not Result)
With the cargo-fuzz install fixed, the fuzz build now reaches target compilation
and fails: fuzz_state_machine.rs called .is_ok() on state.pop_redo(), which
returns Option<Operation> (E0599). Changed to .is_some(). Verified locally:
`cargo check --manifest-path impl/rust-cli/fuzz/Cargo.toml` now compiles all
fuzz targets clean (was: E0599).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KfgJznd6jzSeDYsSXGAXkU1 parent fa00b1c commit ec55ef9
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
98 | | - | |
| 98 | + | |
99 | 99 | | |
100 | 100 | | |
101 | 101 | | |
| |||
0 commit comments