# InsuRo CI 실패 수정 — generate-content 테스트 업데이트

## 작업 레벨: Lv.1

## 프로젝트
- InsuRo: `/home/jay/projects/InsuRo`

## 버그
- **CI 실패**: `tests/test_generate_content.py::TestGenerateContentAPIKey::test_no_api_key_returns_500`
- **에러**: `AssertionError: API 키 없을 때 500이어야 하는데 200 반환`
- **원인**: task-2222에서 generate-content를 anthropic SDK → claude CLI subprocess로 전환. CLI 방식은 API 키가 불필요하므로 500 에러가 더 이상 발생하지 않음. 기존 테스트가 구 방식 기준.

## 수정
`server/tests/test_generate_content.py` — `TestGenerateContentAPIKey` 클래스 수정 또는 삭제:
- `test_no_api_key_returns_500` → CLI 방식에서는 API 키 체크가 불필요하므로 테스트 삭제 또는 skip 처리
- CLI 기반 새 테스트 추가 권장: `test_generate_content_returns_job_id` (job_id 반환 확인)

## affected_files
- `server/tests/test_generate_content.py` (수정)

## 검증 시나리오
1. pytest 전체 통과 (0 failures)
2. npm run build 성공
