Skip to content

Commit

Permalink
Fix flake8 E501 line too long in test code
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhi committed Mar 2, 2024
1 parent 941a42a commit b22af8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_PyFatFS.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ def create_dentries(fs, i):
expected_dentries_root.append(f"{i}.txt")
assert fs.listdir("/root").sort() == expected_dentries_root.sort()
for i in range(0, 10):
assert fs.listdir(f"/root/{i}DIR").sort() == expected_dentries_sub.sort()
self.assertEqual(fs.listdir(f"/root/{i}DIR").sort(),
expected_dentries_sub.sort())

def test_lazy_load_dentry_parent_update(self):
"""#33: Verify parent dentry is properly set on lazy-load."""
Expand Down

0 comments on commit b22af8c

Please sign in to comment.