From 2e14c9d6fe93d4ab6501e90bb76723e77c98b2c6 Mon Sep 17 00:00:00 2001 From: chan Date: Fri, 27 Mar 2026 21:18:51 +0900 Subject: [PATCH] test(backend): update expected error message for invalid company code to match korean translation --- backend/internal/handler/auth_handler_signup_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/internal/handler/auth_handler_signup_test.go b/backend/internal/handler/auth_handler_signup_test.go index bbd3367a..c7de8253 100644 --- a/backend/internal/handler/auth_handler_signup_test.go +++ b/backend/internal/handler/auth_handler_signup_test.go @@ -119,7 +119,7 @@ func TestSignup_CompanyCodeValidation(t *testing.T) { assert.Equal(t, http.StatusBadRequest, resp.StatusCode) var res map[string]interface{} json.NewDecoder(resp.Body).Decode(&res) - assert.Equal(t, "Invalid company code.", res["error"]) + assert.Equal(t, "해당하는 가족사(테넌트)를 찾을 수 없습니다.", res["error"]) }) t.Run("Active Company Code", func(t *testing.T) {