Skip to content

Commit

Permalink
#201: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kmyk committed Dec 17, 2018
1 parent f398192 commit b945719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_files_from_json(samples):
name = sample['name'] + '.' + ext
else:
name = 'sample-{}.{}'.format(i + 1, ext)
files[name] = sample[ext + 'put']
files[name] = hashlib.md5(sample[ext + 'put']).hexdigest()
return files

def snippet_call_download(self, url, files, is_system=False, type='files'):
Expand Down

0 comments on commit b945719

Please sign in to comment.