Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 23, 2021
1 parent 5a0231e commit 909048a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neuro-sdk/tests/test_file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ async def test_transfer_dir(
src.mkdir()
await gen_file_tree(src)
await transferer.transfer_dir(src, dst_dir / "sub_dir")
assert cmp_dirs(src, dst_dir / "sub_dir")
assert await cmp_dirs(src, dst_dir / "sub_dir")


async def test_transfer_dir_dest_exists(
Expand All @@ -212,7 +212,7 @@ async def test_transfer_dir_dest_exists(
dst.mkdir()
await gen_file_tree(src, depths=1)
await transferer.transfer_dir(src, dst)
assert cmp_dirs(src, dst)
assert await cmp_dirs(src, dst)


async def test_transfer_dir_source_not_exists(
Expand Down

0 comments on commit 909048a

Please sign in to comment.