Skip to content

Commit 7f64815

Browse files
authored
Fix assertions in BlackFox handoff tests
1 parent 38eaf32 commit 7f64815

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

tests/test_wave6_blackfox_execution_handoff.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,10 @@ def test_blackfox_handoff_prepares_review_packet_only_for_ready_gate() -> None:
107107
notes=("Review packet only; no dispatch.",),
108108
)
109109

110-
assert handoff.status is WaveSixBlackFoxHandoffStatus.READY_FOR_BLACKFOX_REVIEW_PACKET
111110
assert (
112-
handoff.decision
113-
is WaveSixBlackFoxHandoffDecision.PREPARE_REVIEW_PACKET_ONLY
111+
handoff.status is WaveSixBlackFoxHandoffStatus.READY_FOR_BLACKFOX_REVIEW_PACKET
114112
)
113+
assert handoff.decision is WaveSixBlackFoxHandoffDecision.PREPARE_REVIEW_PACKET_ONLY
115114
assert handoff.ready_for_blackfox_review_packet
116115
assert handoff.blockers == ()
117116
assert not handoff.dispatch_allowed

0 commit comments

Comments
 (0)