Skip to content

Commit 995df0a

Browse files
committed
Fix variable naming
1 parent 4b0e143 commit 995df0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/mock_vws/test_add_target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,14 +511,14 @@ def test_image_too_large(
511511

512512
width = width + 1
513513
height = height + 1
514-
png_not_too_large = make_image_file(
514+
png_too_large = make_image_file(
515515
file_format='PNG',
516516
color_space='RGB',
517517
width=width,
518518
height=height,
519519
)
520520

521-
image_data = png_not_too_large.read()
521+
image_data = png_too_large.read()
522522
image_data_encoded = base64.b64encode(image_data).decode('ascii')
523523
image_content_size = len(image_data)
524524
# We check that the image we created is just slightly smaller than the

0 commit comments

Comments
 (0)