<?xml version="1.0" encoding="utf-8"?><testsuites name="pytest tests"><testsuite name="pytest" errors="0" failures="1" skipped="0" tests="1" time="0.387" timestamp="2026-08-17T12:28:04.150343+09:00" hostname="cube-B850M-AORUS-ELITE-WIFI6E-ICE"><testcase classname="tests.gateway.test_nutrition_coaching" name="test_coordinator_initializes_customer_service_state_store" time="0.012"><failure message="AssertionError: assert False is True&#10; +  where False = exists()&#10; +    where exists = PosixPath('/tmp/pytest-of-cube/pytest-0/test_coordinator_initializes_c0/data/owner-actions/customer-service-state.json').exists">tmp_path = PosixPath('/tmp/pytest-of-cube/pytest-0/test_coordinator_initializes_c0')

    def test_coordinator_initializes_customer_service_state_store(
        tmp_path: Path,
    ) -&gt; None:
        module = _module()
        registry = _registry(tmp_path)
        state_path = (
            tmp_path / "data" / "owner-actions" / "customer-service-state.json"
        )
        state_path.unlink()
    
        coordinator = module.NutritionCoachingCoordinator(
            tmp_path,
            registry,
            kst_date_provider=lambda: date(2026, 7, 2),
        )
        address = module.IncomingAddress(
            "client",
            "customer-chat",
            "customer-topic",
        )
    
&gt;       assert state_path.exists() is True
E       AssertionError: assert False is True
E        +  where False = exists()
E        +    where exists = PosixPath('/tmp/pytest-of-cube/pytest-0/test_coordinator_initializes_c0/data/owner-actions/customer-service-state.json').exists

tests/gateway/test_nutrition_coaching.py:1278: AssertionError</failure></testcase></testsuite></testsuites>