Skip to content

Commit c22c771

Browse files
committed
addressed feedback : added 2 lines space between tests
1 parent 682729d commit c22c771

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/transformation_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,16 +257,19 @@ def test_pdf_convert(transform):
257257
result = transform.pdf_convert(pageorientation='landscape')
258258
assert result.url == target_url
259259

260+
260261
def test_minify_css(transform):
261262
target_url = '{}/{}/minify_css/{}'.format(config.CDN_URL, APIKEY, EXTERNAL_URL)
262263
result = transform.minify_css()
263264
assert result.url == target_url
265+
264266

265267
def test_minify_css_with_params(transform):
266268
target_url = '{}/{}/minify_css=gzip:false,level:1/{}'.format(config.CDN_URL, APIKEY, EXTERNAL_URL)
267269
result = transform.minify_css(level=1, gzip=False)
268270
assert result.url == target_url
269271

272+
270273
def quality(transform):
271274
target_url = '{}/{}/quality=value:75/{}'.format(config.CDN_URL, APIKEY, EXTERNAL_URL)
272275
quality = transform.quality(75)

0 commit comments

Comments
 (0)