diff --git a/server/cmd/server/integration_test.go b/server/cmd/server/integration_test.go index 4cce5690..1b6e07fc 100644 --- a/server/cmd/server/integration_test.go +++ b/server/cmd/server/integration_test.go @@ -143,9 +143,9 @@ func setupIntegrationTestFixture(ctx context.Context, pool *pgxpool.Pool) (strin if _, err := pool.Exec(ctx, ` INSERT INTO agent ( workspace_id, name, description, runtime_mode, runtime_config, - runtime_id, visibility, max_concurrent_tasks, owner_id, skills, tools, triggers + runtime_id, visibility, max_concurrent_tasks, owner_id, tools, triggers ) - VALUES ($1, $2, '', 'cloud', '{}'::jsonb, $3, 'workspace', 1, $4, '', '[]'::jsonb, '[]'::jsonb) + VALUES ($1, $2, '', 'cloud', '{}'::jsonb, $3, 'workspace', 1, $4, '[]'::jsonb, '[]'::jsonb) `, workspaceID, "Integration Test Agent", runtimeID, userID); err != nil { return "", "", err } diff --git a/server/internal/handler/handler_test.go b/server/internal/handler/handler_test.go index d49364a7..cb1f0bb6 100644 --- a/server/internal/handler/handler_test.go +++ b/server/internal/handler/handler_test.go @@ -109,9 +109,9 @@ func setupHandlerTestFixture(ctx context.Context, pool *pgxpool.Pool) (string, s if _, err := pool.Exec(ctx, ` INSERT INTO agent ( workspace_id, name, description, runtime_mode, runtime_config, - runtime_id, visibility, max_concurrent_tasks, owner_id, skills, tools, triggers + runtime_id, visibility, max_concurrent_tasks, owner_id, tools, triggers ) - VALUES ($1, $2, '', 'cloud', '{}'::jsonb, $3, 'workspace', 1, $4, '', '[]'::jsonb, '[]'::jsonb) + VALUES ($1, $2, '', 'cloud', '{}'::jsonb, $3, 'workspace', 1, $4, '[]'::jsonb, '[]'::jsonb) `, workspaceID, "Handler Test Agent", runtimeID, userID); err != nil { return "", "", err }