Skip to content

Commit 23f0cc3

Browse files
committed
fix: use correct uppercase ACTIVE_LEARNINGS.md filename (matches synthesize_learnings.py)
1 parent da3f3ed commit 23f0cc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/iterate/repl_helpers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ func TestReadActiveLearnings_NoMemoryDir(t *testing.T) {
217217
func TestReadActiveLearnings_WithActiveLearnings(t *testing.T) {
218218
dir := t.TempDir()
219219
os.MkdirAll(filepath.Join(dir, "memory"), 0o755)
220-
os.WriteFile(filepath.Join(dir, "memory", "active_learnings.md"), []byte("learning 1\nlearning 2"), 0o644)
220+
os.WriteFile(filepath.Join(dir, "memory", "ACTIVE_LEARNINGS.md"), []byte("learning 1\nlearning 2"), 0o644)
221221

222222
result := readActiveLearnings(dir)
223223
if result != "learning 1\nlearning 2" {

0 commit comments

Comments
 (0)