Skip to content

Commit 2f7afee

Browse files
committed
test: refresh default-config snapshot for new background fields
The default-config dump snapshot was stale: earlier commits added `task_retention_days` and `max_output_bytes` to BackgroundConfig without updating tests/core/test_config.py, failing test-pythinker-code across the matrix. Add both fields in dump order.
1 parent 6e515f1 commit 2f7afee

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/core/test_config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@ def test_default_config_dump():
4242
},
4343
"background": {
4444
"max_running_tasks": 4,
45+
"task_retention_days": 7,
4546
"read_max_bytes": 30000,
4647
"notification_tail_lines": 20,
4748
"notification_tail_chars": 3000,
4849
"wait_poll_interval_ms": 500,
4950
"worker_heartbeat_interval_ms": 5000,
5051
"worker_stale_after_ms": 15000,
5152
"kill_grace_period_ms": 2000,
53+
"max_output_bytes": 52428800,
5254
"keep_alive_on_exit": False,
5355
"agent_task_timeout_s": 3600,
5456
"print_wait_ceiling_s": 3600,

0 commit comments

Comments
 (0)