Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gireg.roussel committed Aug 19, 2024
1 parent ccd97d1 commit f415b45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/generate_overlays/generate_overlays_multilayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

yarrowset = yarrow.YarrowDataset(info=info)

# You shoud use the add_* method insert elements into the dataset
# You should use the add_* method insert elements into the dataset
yarrowset.add_multilayer_image(multilayer=multilayer)

with open(
Expand Down
4 changes: 2 additions & 2 deletions tests/test_append.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_save_and_load_raw(yar_dataset: YarrowDataset, tmp_path):
compare_yarrow_datasets_pydantic(yar_dataset, new_dataset)


def test_pass_wrong_dict_to_metrics_sould_raise():
def test_pass_wrong_dict_to_metrics_should_raise():
# Given
excepted_error_msg = (
"Input should be a valid number, unable to parse string as a number"
Expand All @@ -85,7 +85,7 @@ def test_pass_wrong_dict_to_metrics_sould_raise():
assert excepted_error_msg == actual_error_msg


def test_pass_good_dict_to_metrics_sould_create_YarrowDataset():
def test_pass_good_dict_to_metrics_should_create_YarrowDataset():
# Given
excepted_object = YarrowDataset_pydantic
excepted_metrics = {"iou": 0.99}
Expand Down

0 comments on commit f415b45

Please sign in to comment.