fix-pre-existing

Fix pre-existing test failure: assigner_to_creator_signal_path_exists

Metadata

Statusdone
Assignedagent-153
Agent identityf51439356729d112a6c404803d88015d5b44832c6c584c62b96732b63c2b0c7e
Created2026-04-26T20:49:46.386627495+00:00
Started2026-04-26T22:44:12.678019592+00:00
Completed2026-04-26T23:00:18.784092393+00:00
Tagseval-scheduled
Tokens906865 in / 5419 out

Description

Description

tests/integration_agency_pipeline.rs::assigner_to_creator_signal_path_exists (line 670) fails on current main:

assertion `left == right` failed
  left: Premium
 right: Standard

The test asserts DispatchRole::Creator.default_tier() == Tier::Standard, but src/config.rs:1115 returns Tier::Premium for Creator. The default_tier() doc comment at src/config.rs:1100-1101 says "creator and verification get standard (sonnet)" — so the comment matches the test, but the code matches neither.

This was introduced/exposed by agent-4/cheap-by-default (commit 72cfe692e). Decide which is correct (Standard or Premium for Creator) and align the other two.

File scope

  • src/config.rs (around line 1100-1119)
  • tests/integration_agency_pipeline.rs (line 670)

Validation

  • cargo test --test integration_agency_pipeline assigner_to_creator_signal_path_exists passes
  • doc comment on default_tier() matches the impl
  • cargo build + cargo test pass with no regressions

Depends on

Required by

Log