Skip to content

Commit 68200bf

Browse files
committed
Update to match master
1 parent 5ccef64 commit 68200bf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

dev-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
attrs==18.1.0 # Modern attrs is required for pytest
2-
autoflake==1.2check-manifest==0.37
2+
autoflake==1.2
3+
check-manifest==0.37
34
codecov==2.0.15 # Upload coverage data
45
dodgy==0.1.9 # Look for uploaded secrets
56
flake8==3.5.0 # Lint

tests/mock_vws/test_query.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
add_target_to_vws,
2626
delete_target,
2727
get_vws_target,
28-
image_file,
28+
make_image_file,
2929
query,
3030
update_target,
3131
wait_for_target_processed,
@@ -1083,7 +1083,7 @@ def test_png(
10831083
"""
10841084
documented_max_bytes = 2 * 1024 * 1024
10851085
width = height = 835
1086-
png_not_too_large = image_file(
1086+
png_not_too_large = make_image_file(
10871087
file_format='PNG',
10881088
color_space='RGB',
10891089
width=width,
@@ -1110,7 +1110,7 @@ def test_png(
11101110
assert response.json()['results'] == []
11111111

11121112
width = height = 836
1113-
png_not_too_large = image_file(
1113+
png_not_too_large = make_image_file(
11141114
file_format='PNG',
11151115
color_space='RGB',
11161116
width=width,

0 commit comments

Comments
 (0)