Skip to content

Commit

Permalink
fix: remove old comments
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasKoehneckeAA committed Apr 11, 2024
1 parent fc96225 commit 121f4f8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/evaluation/test_aggregation_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
def mocked_hugging_face_aggregation_repository(
temp_file_system: MemoryFileSystem,
) -> Iterable[HuggingFaceAggregationRepository]:
# this repository should already exist and does not have to be deleted after the tests
class_to_patch = "intelligence_layer.evaluation.aggregation.hugging_face_aggregation_repository.HuggingFaceAggregationRepository"
with patch(f"{class_to_patch}.create_repository", autospec=True), patch(
f"{class_to_patch}.delete_repository",
Expand Down
1 change: 0 additions & 1 deletion tests/evaluation/test_dataset_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def file_dataset_repository(tmp_path: Path) -> FileDatasetRepository:
def mocked_hugging_face_dataset_repository(
temp_file_system: MemoryFileSystem,
) -> Iterable[HuggingFaceDatasetRepository]:
# this repository should already exist and does not have to be deleted after the tests
class_to_patch = "intelligence_layer.evaluation.dataset.hugging_face_dataset_repository.HuggingFaceDatasetRepository"
with patch(f"{class_to_patch}.create_repository", autospec=True), patch(
f"{class_to_patch}.delete_repository",
Expand Down
1 change: 0 additions & 1 deletion tests/evaluation/test_hugging_face_dataset_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ class DummyAggregatedEvaluation(BaseModel):
def hugging_face_dataset_repository(
hugging_face_test_repository_id: str, hugging_face_token: str
) -> Iterable[HuggingFaceDatasetRepository]:
# this repository should already exist and does not have to be deleted after the tests
repo = HuggingFaceDatasetRepository(
repository_id=hugging_face_test_repository_id,
token=hugging_face_token,
Expand Down

0 comments on commit 121f4f8

Please sign in to comment.