# Phase 35 — Deferred Items (discovered during execution)

## Plan 35-10 (SC1 gap-closure)

### Pre-existing broken integration test: `tests/native_wrapper_state_retry.rs`

- **Discovered during:** Plan 35-10 full-suite verification (`cargo test`).
- **Symptom:** `error[E0063]: missing field pulse_psyche in initializer of WrapperHandoffState` at lines 54, 95, 158.
- **Root cause:** The `pulse_psyche` field was added to `WrapperHandoffState` (commit 260523-648) but `tests/native_wrapper_state_retry.rs` was never updated to set it. This file was last touched before that field landed.
- **Scope:** NOT caused by Plan 35-10 — confirmed the file has zero `pulse_psyche` references at the pre-work commit `3d479c8`, while the struct already required the field. Out of scope per the executor SCOPE BOUNDARY rule (failure in an unrelated file the task did not touch).
- **Disposition:** Deferred. Candidate for a `/gsd-fast` or `/gsd-quick` cleanup — add `pulse_psyche: false` (or the appropriate value) to the three `WrapperHandoffState { .. }` initializers in the test.

### Known parallel-test contention (pre-existing, documented in PROJECT.md)

- `cargo test` (parallel) shows env-global SPT_HOME contention failures in `common::spool`, `common::owlery`, `common::sync`, `common::listener` tests. All PASS under `--test-threads=1` (verified: 949 passed, 0 failed single-threaded). This is the "21 unrelated parallel-test failures ... pass in isolation; cleanup quick task candidate" item already tracked in PROJECT.md Next-Milestone backlog.
