Skip to content

Commit 7b68fa4

Browse files
committed
remove duplicate tests
1 parent 92b6130 commit 7b68fa4

2 files changed

Lines changed: 0 additions & 10 deletions

File tree

tests/sdk/test_async_scorer.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ def test_repr(self, mock_async_client: AsyncMock) -> None:
2424
scorer = AsyncScorer(mock_async_client, "scorer_123")
2525
assert repr(scorer) == "<AsyncScorer id='scorer_123'>"
2626

27-
def test_id_property(self, mock_async_client: AsyncMock) -> None:
28-
"""Test id property returns the scorer ID."""
29-
scorer = AsyncScorer(mock_async_client, "scorer_123")
30-
assert scorer.id == "scorer_123"
31-
3227
@pytest.mark.asyncio
3328
async def test_get_info(self, mock_async_client: AsyncMock, scorer_view: MockScorerView) -> None:
3429
"""Test get_info method."""

tests/sdk/test_scorer.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ def test_repr(self, mock_client: Mock) -> None:
2222
scorer = Scorer(mock_client, "scorer_123")
2323
assert repr(scorer) == "<Scorer id='scorer_123'>"
2424

25-
def test_id_property(self, mock_client: Mock) -> None:
26-
"""Test id property returns the scorer ID."""
27-
scorer = Scorer(mock_client, "scorer_123")
28-
assert scorer.id == "scorer_123"
29-
3025
def test_get_info(self, mock_client: Mock, scorer_view: MockScorerView) -> None:
3126
"""Test get_info method."""
3227
mock_client.scenarios.scorers.retrieve.return_value = scorer_view

0 commit comments

Comments
 (0)