We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b0e143 commit 995df0aCopy full SHA for 995df0a
tests/mock_vws/test_add_target.py
@@ -511,14 +511,14 @@ def test_image_too_large(
511
512
width = width + 1
513
height = height + 1
514
- png_not_too_large = make_image_file(
+ png_too_large = make_image_file(
515
file_format='PNG',
516
color_space='RGB',
517
width=width,
518
height=height,
519
)
520
521
- image_data = png_not_too_large.read()
+ image_data = png_too_large.read()
522
image_data_encoded = base64.b64encode(image_data).decode('ascii')
523
image_content_size = len(image_data)
524
# We check that the image we created is just slightly smaller than the
0 commit comments