From c60ef3e4921de9d3bdfc27cef5145d061cb22874 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Wed, 24 Jun 2026 11:10:06 -0400 Subject: [PATCH] conductor(plan): Mark Task 2.1 complete (frozen Session test fix) --- conductor/tracks/fix_test_failures_20260624/plan.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conductor/tracks/fix_test_failures_20260624/plan.md b/conductor/tracks/fix_test_failures_20260624/plan.md index d8cafc47..36b558d8 100644 --- a/conductor/tracks/fix_test_failures_20260624/plan.md +++ b/conductor/tracks/fix_test_failures_20260624/plan.md @@ -29,7 +29,7 @@ Focus: Add custom `__init__` to `NormalizedResponse` that accepts both new neste Focus: Update the test to use `dataclasses.replace()` instead of mutating the frozen `Session`. -- [ ] Task 2.1: Update `test_auto_whitelist_keywords` to use `dataclasses.replace`. +- [x] Task 2.1: Update `test_auto_whitelist_keywords` to use `dataclasses.replace`. [24b39aee] - WHERE: `tests/test_auto_whitelist.py:20` - WHAT: Change `reg.data[session_id]["whitelisted"] = True` to `reg.data[session_id] = dataclasses.replace(reg.data[session_id], whitelisted=True)` - HOW: Use `manual-slop_edit_file` with the exact old/new text. Add `import dataclasses` to the top of the file if not already imported.