From 1029aff2c7289ec185f0d1a3391588cba55c4313 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Tue, 21 Jul 2026 01:41:41 -0400 Subject: [PATCH] Thread the season year through a call site that arrived with seed lots Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01H3zbym8Doka2d7D48maSgZ --- internal/service/seed_lots_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/seed_lots_test.go b/internal/service/seed_lots_test.go index e7a2eed..a9cb75d 100644 --- a/internal/service/seed_lots_test.go +++ b/internal/service/seed_lots_test.go @@ -461,7 +461,7 @@ func TestCopiedGardenDoesNotInheritSeedLots(t *testing.T) { if err != nil { t.Fatalf("CopyGarden: %v", err) } - full, err := s.GardenFull(ctx, owner, copied.ID) + full, err := s.GardenFull(ctx, owner, copied.ID, nil) if err != nil { t.Fatalf("GardenFull: %v", err) }