Update pytest_tests/helpers/file_helper.py

Co-authored-by: Vladimir <108462321+vdomnich-yadro@users.noreply.github.com>
Signed-off-by: anikeev-yadro <110966367+anikeev-yadro@users.noreply.github.com>
This commit is contained in:
anikeev-yadro 2022-10-25 09:53:04 +03:00
parent 77ebf95434
commit abe73fcc96

View file

@ -73,7 +73,7 @@ def get_file_hash(file_path: str, len: Optional[int] = None, offset: Optional[in
"""
file_hash = hashlib.sha256()
with open(file_path, "rb") as out:
if len and offset is None:
if len and not offset:
file_hash.update(out.read(len))
elif len and offset:
out.seek(offset, 0)