We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa78fad commit 9067a01Copy full SHA for 9067a01
1 file changed
py/src/braintrust/integrations/adk/test_adk.py
@@ -693,11 +693,8 @@ async def test_adk_binary_data_attachment_conversion(memory_logger):
693
694
runner = Runner(agent=agent, app_name=APP_NAME, session_service=session_service)
695
696
- # Load test image from fixtures
697
- fixtures_dir = Path(__file__).parent.parent.parent.parent.parent.parent / "internal" / "golden" / "fixtures"
698
- image_path = fixtures_dir / "test-image.png"
699
- with open(image_path, "rb") as f:
700
- image_data = f.read()
+ # Load test image from shared SDK fixtures
+ image_data = (FIXTURES_DIR / "test-image.png").read_bytes()
701
702
# Create message with inline binary data
703
user_msg = types.Content(
0 commit comments