From 60b0b0b63b78d13b275c10e6c7f803e679d91662 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 24 Mar 2026 21:53:45 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20test=20uses=20core.New()=20directly=20?= =?UTF-8?q?=E2=80=94=20no=20.Value=20unwrap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Virgil --- pkg/agentic/prep_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/agentic/prep_test.go b/pkg/agentic/prep_test.go index 83c2c2f..e51deac 100644 --- a/pkg/agentic/prep_test.go +++ b/pkg/agentic/prep_test.go @@ -190,7 +190,7 @@ func TestSetCore_Good(t *testing.T) { s := &PrepSubsystem{} assert.Nil(t, s.core) - c := core.New(core.WithOption("name", "test")).Value.(*core.Core) + c := core.New(core.WithOption("name", "test")) s.SetCore(c) assert.NotNil(t, s.core) }