remove outdated test

This commit is contained in:
Mason Daugherty 2025-08-04 23:47:17 -04:00
parent f3c863447f
commit 5c9ce7fd2b
No known key found for this signature in database

View File

@ -117,13 +117,6 @@ class TestImageBlockFactory:
): ):
create_image_block() create_image_block()
def test_base64_without_mime_type_raises_error(self) -> None:
"""Test that base64 without mime_type raises ValueError."""
with pytest.raises(
ValueError, match="mime_type is required when using base64 data"
):
create_image_block(base64="iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJ")
def test_with_index(self) -> None: def test_with_index(self) -> None:
"""Test image block creation with index.""" """Test image block creation with index."""
block = create_image_block(url="https://example.com/image.jpg", index=1) block = create_image_block(url="https://example.com/image.jpg", index=1)
@ -166,13 +159,6 @@ class TestVideoBlockFactory:
): ):
create_video_block() create_video_block()
def test_base64_without_mime_type_raises_error(self) -> None:
"""Test that base64 without mime_type raises ValueError."""
with pytest.raises(
ValueError, match="mime_type is required when using base64 data"
):
create_video_block(base64="UklGRnoGAABXQVZFZm10IBAAAAABAAEA")
class TestAudioBlockFactory: class TestAudioBlockFactory:
"""Test create_audio_block factory function.""" """Test create_audio_block factory function."""