Skip to content

Commit

Permalink
fix broken test_merge_directories_with_ignored_symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
sahib committed May 31, 2020
1 parent 4ee0c26 commit c5358c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_options/test_symlinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_merge_directories_with_ignored_symlinks():
create_link('bogus', 'b/link', symlink=True)

head, *data, footer = run_rmlint('-T df,dd')
assert {e["path"][len(TESTDIR_NAME):] for e in data} == {
assert {e["path"][len(TESTDIR_NAME):] for e in data if e["type"] == "duplicate_dir"} == {
'/a',
'/b',
}
Expand Down

0 comments on commit c5358c6

Please sign in to comment.