Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/datasets/investigation_dataset_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def click_edit_dataset_button(self) -> None:
"""
self.click(self.edit_dataset_button)

def assert_polyp_alogrithm_size(
def assert_polyp_algorithm_size(
self, polyp_number: int, expected_value: Optional[str]
) -> None:
"""
Expand Down Expand Up @@ -418,7 +418,7 @@ def assert_polyp_alogrithm_size(
str(actual_value).strip() == str(expected_value).strip()
), f"Expected '{expected_value}', but got '{actual_value}'"

def assert_polyp_categrory(
def assert_polyp_category(
self, polyp_number: int, expected_value: Optional[str]
) -> None:
"""
Expand Down
Loading