# task-2154: InsuRo CI 테스트 수정 — test_google_trends_keyword_not_found 실패

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

## 문제
GitHub Actions CI에서 `server/tests/test_google_trends.py::test_google_trends_keyword_not_found` 1건 실패.
task-2140에서 google-trends API의 404 응답을 제거하고 200으로 변경했는데, 기존 테스트가 404를 기대하고 있음.

## 수정
`test_google_trends_keyword_not_found` 테스트를 API 변경에 맞게 업데이트:
- 이전: 존재하지 않는 키워드 → 404 응답 기대
- 현재: 존재하지 않는 키워드 → 200 응답 + `is_tracked: false` 반환
- 테스트를 현재 API 동작에 맞게 수정

## ★ 먼저 읽을 파일
- `/home/jay/projects/InsuRo/server/tests/test_google_trends.py` — 실패 테스트
- `/home/jay/projects/InsuRo/server/main.py` L908-970 — google-trends API 엔드포인트 (task-2140에서 수정됨)

## 검증 시나리오

### 시나리오 1: 로컬 pytest
`cd server && python -m pytest tests/test_google_trends.py -v` → 전체 PASS

### 시나리오 2: CI 그린
git push 후 `gh run list --limit 1` → completed success

### 시나리오 3: 기존 테스트 회귀 없음
`cd server && python -m pytest tests/ -x --ignore=tests/test_gdrive_sync.py` → 전체 PASS

## 완료 시그니처
- test_google_trends_keyword_not_found 테스트가 200 응답 + is_tracked: false를 기대하도록 수정
- 로컬 pytest 전체 PASS
- 커밋 + 머지 + push
- CI 그린 (Vitest + Pytest 모두)

## 레벨
- Lv.1

## 프로젝트
- insuro
