# task-2053: InsuRo test_onboarding_ob4_7.py 테스트 실패 수정

## 문제
`test_completed_user_no_remind` 테스트가 403으로 실패.
`/api/insuro/onboarding/check-remind` 엔드포인트 접근 시 require_feature/require_plan에 의해 차단.

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

## 실패 내용
```
server/tests/test_onboarding_ob4_7.py::TestOnboardingRemind::test_completed_user_no_remind
assert response.status_code == 200
assert 403 == 200
```

## 수정 방법
1. 실패 테스트 확인:
   ```bash
   grep -n "test_completed_user_no_remind" server/tests/test_onboarding_ob4_7.py
   ```
2. 해당 테스트의 mock 플랜 확인:
   ```bash
   grep -B20 "test_completed_user_no_remind" server/tests/test_onboarding_ob4_7.py | grep -i "plan\|mock\|fixture"
   ```
3. `/api/insuro/onboarding/check-remind` 엔드포인트의 require_feature/require_plan 확인:
   ```bash
   grep -n "check.remind\|check_remind" server/main.py
   ```
4. mock 플랜을 엔드포인트 요구 수준에 맞게 변경 (PRO → MAX 등)
5. 같은 TestOnboardingRemind 클래스 내 다른 테스트도 동일 패턴인지 확인 후 일괄 수정
6. 전체 pytest 실행하여 0 failed 확인:
   ```bash
   cd server && python -m pytest tests/ -x --tb=short
   ```

## 완료 시그니처
- [pytest] `test_onboarding_ob4_7.py` 전체 PASS (0 failed)
- [pytest] 전체 test suite 0 failed

## 검증 시나리오
1. `python -m pytest tests/test_onboarding_ob4_7.py -v` → 전체 PASS
2. `python -m pytest tests/ --tb=short` → 0 failed
3. `npm run build` → 빌드 성공

## 레벨
- normal

## 프로젝트
- insuro