mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-10 17:32:13 -04:00
fix: apply black formatting to fix CI lint failures
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
d36b16eb8e
commit
cf7bd04599
2 changed files with 3 additions and 14 deletions
|
|
@ -429,8 +429,7 @@ def test_sort_by_all_keys_with_directions(archivers, request, sort_key):
|
|||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
not are_hardlinks_supported() or is_win32,
|
||||
reason="hardlinks not supported or not available on windows",
|
||||
not are_hardlinks_supported() or is_win32, reason="hardlinks not supported or not available on windows"
|
||||
)
|
||||
def test_hard_link_deletion_and_replacement(archivers, request):
|
||||
archiver = request.getfixturevalue(archivers)
|
||||
|
|
|
|||
|
|
@ -668,12 +668,7 @@ def test_diff_formatter_format_time_shows_microseconds_when_same_second():
|
|||
item2 = _make_item_with_ctime(ctime2_ns)
|
||||
|
||||
diff = ItemDiff(
|
||||
path="test/file",
|
||||
item1=item1,
|
||||
item2=item2,
|
||||
chunk_1=iter([]),
|
||||
chunk_2=iter([]),
|
||||
can_compare_chunk_ids=True,
|
||||
path="test/file", item1=item1, item2=item2, chunk_1=iter([]), chunk_2=iter([]), can_compare_chunk_ids=True
|
||||
)
|
||||
|
||||
fmt = DiffFormatter("{ctime} {path}{NL}", content_only=False)
|
||||
|
|
@ -700,12 +695,7 @@ def test_diff_formatter_format_time_no_microseconds_for_different_seconds():
|
|||
item2 = _make_item_with_ctime(ctime2_ns)
|
||||
|
||||
diff = ItemDiff(
|
||||
path="test/file",
|
||||
item1=item1,
|
||||
item2=item2,
|
||||
chunk_1=iter([]),
|
||||
chunk_2=iter([]),
|
||||
can_compare_chunk_ids=True,
|
||||
path="test/file", item1=item1, item2=item2, chunk_1=iter([]), chunk_2=iter([]), can_compare_chunk_ids=True
|
||||
)
|
||||
|
||||
fmt = DiffFormatter("{ctime} {path}{NL}", content_only=False)
|
||||
|
|
|
|||
Loading…
Reference in a new issue