From 94492c90a7cbeed3095e55ecb120cb71f062bb77 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 28 Jan 2026 16:03:56 +0800 Subject: [PATCH] Fix Default Email Channel in Tests - Updated the expected default email channel in the `TestDefaultEmailChannel` test from "email" to "default" to align with recent configuration changes, ensuring accurate test validation. --- agent/robot/executor/standard/delivery_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/robot/executor/standard/delivery_test.go b/agent/robot/executor/standard/delivery_test.go index b2c612e3..b93cb7ac 100644 --- a/agent/robot/executor/standard/delivery_test.go +++ b/agent/robot/executor/standard/delivery_test.go @@ -439,8 +439,8 @@ func TestDeliveryCenterMixedChannels(t *testing.T) { func TestDefaultEmailChannel(t *testing.T) { t.Run("returns default email channel", func(t *testing.T) { - // Default should be "email" - assert.Equal(t, "email", types.DefaultEmailChannel()) + // Default should be "default" + assert.Equal(t, "default", types.DefaultEmailChannel()) }) t.Run("can set custom email channel", func(t *testing.T) {