diff --git a/resources/tester/test_b09_labor_reliability.py b/resources/tester/test_b09_labor_reliability.py index 72d1ab0f..b68d9999 100644 --- a/resources/tester/test_b09_labor_reliability.py +++ b/resources/tester/test_b09_labor_reliability.py @@ -65,7 +65,9 @@ def test_정상_직종_제목에는_빈_값이다() -> None: normals = [ title for code, title in build.book.titles.items() - if title.kind is PriceKind.LABOR and code not in flagged + # 조종원 시간당 제목(`1050#시간`)은 그 직종 기호를 이어받음 — 직종 코드로 가름(2026-09-15 · 콤팩터가 + # 일반기계운전사(1050 *)로 서며 처음 드러남) + if title.kind is PriceKind.LABOR and code.split("#")[0] not in flagged ] assert normals, "정상 공표 직종 제목이 하나도 없다" assert all(title.reliability == "" for title in normals)