Skip to content

Commit

Permalink
Save
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Dec 28, 2024
1 parent d2476e2 commit 94533ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def test_link_canonicalization(home: str, dotfiles: Dotfiles, run_dotbot: Callab
@pytest.mark.parametrize("dst", ["~/.f", "~/f"])
@pytest.mark.parametrize("include_force", [True, False])
def test_link_default_source(
dst: str, include_force: bool, home: str, dotfiles: Dotfiles, run_dotbot: Callable[..., None]
) -> None: # noqa: FBT001
dst: str, include_force: bool, home: str, dotfiles: Dotfiles, run_dotbot: Callable[..., None] # noqa: FBT001
) -> None:
"""Verify that default sources are calculated correctly.
This test includes verifying files with and without leading periods,
Expand Down Expand Up @@ -752,8 +752,8 @@ def test_link_if_defaults_windows(home: str, dotfiles: Dotfiles, run_dotbot: Cal

@pytest.mark.parametrize("ignore_missing", [True, False])
def test_link_ignore_missing(
ignore_missing: bool, home: str, dotfiles: Dotfiles, run_dotbot: Callable[..., None]
) -> None: # noqa: FBT001
ignore_missing: bool, home: str, dotfiles: Dotfiles, run_dotbot: Callable[..., None] # noqa: FBT001
) -> None:
"""Verify link 'ignore_missing' is respected when the target is missing."""

dotfiles.write_config(
Expand Down

0 comments on commit 94533ce

Please sign in to comment.