From 0de2bb78f82b5afe1c3dde4229f7d8d64f8918c2 Mon Sep 17 00:00:00 2001 From: Ziyang Guo <121015044+RerankerGuo@users.noreply.github.com> Date: Wed, 15 Jul 2026 12:26:37 +0800 Subject: [PATCH] fix(test): update MinIO mock for AgentTeams alias --- manager/tests/test-update-builtin-section-minio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manager/tests/test-update-builtin-section-minio.sh b/manager/tests/test-update-builtin-section-minio.sh index f9994526b..60dade877 100644 --- a/manager/tests/test-update-builtin-section-minio.sh +++ b/manager/tests/test-update-builtin-section-minio.sh @@ -37,10 +37,10 @@ mc() { local src="$2" local dst="$3" - # Determine which arg is a "minio path" (contains "hiclaw/") vs local path + # Determine which arg is a MinIO path (starts with "agentteams/") vs local path. _resolve() { local p="$1" - if [[ "${p}" == hiclaw/* ]]; then + if [[ "${p}" == agentteams/* ]]; then echo "${FAKE_MINIO_ROOT}/${p}" else echo "${p}"