Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jpy-git authored and Tinche committed Jan 6, 2022
1 parent 5f8f51c commit 313f4a5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,8 @@ async def test_link():
exists(src_filename)
and exists(dst_filename)
and (stat(src_filename).st_ino == stat(dst_filename).st_ino)
and (stat(src_filename).st_nlink == initial_src_nlink + 1)(
stat(dst_filename).st_nlink == 2
)
and (stat(src_filename).st_nlink == initial_src_nlink + 1)
and (stat(dst_filename).st_nlink == 2)
)
await aiofiles.os.remove(dst_filename)
assert (
Expand Down

0 comments on commit 313f4a5

Please sign in to comment.