File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -542,15 +542,15 @@ def test_png_too_large(
542542 result_code = ResultCodes .IMAGE_TOO_LARGE ,
543543 )
544544
545- def test_corrupted_and_too_large (
545+ def test_too_large_and_corrupted (
546546 self ,
547547 vuforia_database_keys : VuforiaDatabaseKeys ,
548548 png_large : io .BytesIO ,
549549 ) -> None :
550550 """
551551 foobar todo update docstring
552552 An `ImageTooLarge` result is returned if the image is above a certain
553- threshold.
553+ threshold and is corrupted .
554554
555555 This threshold is documented as being 2 MB but it is actually
556556 slightly larger. See the `png_large` fixture for more details.
Original file line number Diff line number Diff line change @@ -734,7 +734,7 @@ def test_image_valid(
734734 result_code = ResultCodes .SUCCESS ,
735735 )
736736
737- def test_bad_image (
737+ def test_bad_image_format_or_color_space (
738738 self ,
739739 bad_image_file : io .BytesIO ,
740740 vuforia_database_keys : VuforiaDatabaseKeys ,
@@ -765,15 +765,15 @@ def test_bad_image(
765765 result_code = ResultCodes .BAD_IMAGE ,
766766 )
767767
768- def test_too_large (
768+ def test_too_large_and_corrupted (
769769 self ,
770770 vuforia_database_keys : VuforiaDatabaseKeys ,
771771 png_large : io .BytesIO ,
772772 target_id : str ,
773773 ) -> None :
774774 """
775775 An `ImageTooLarge` result is returned if the image is above a certain
776- threshold.
776+ threshold and is corrupted .
777777
778778 This threshold is documented as being 2 MB but it is actually
779779 slightly larger. See the `png_large` fixture for more details.
You can’t perform that action at this time.
0 commit comments