"""Utility functions for integration tests.""" def convert_to_grass_headers( identity_id: str, profile_type: str, profile_id: int ) -> dict[str, str]: """Convert profile info to Grass headers for requests.""" return { 'orchard-identity-id': identity_id, 'orchard-profile-type': profile_type, 'orchard-profile-id': str(profile_id), 'apollographql-client-name': 'integration-tests', 'apollographql-client-version': '1.0', }