Skip to content

Commit

Permalink
chore: autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Jul 16, 2024
1 parent e4d941d commit 1619b92
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/unit/remote/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def test_commit(new_dir):

repo.commit()

# verify commit (the `isinstance` checks are to satsify pyright)
# verify commit (the `isinstance` checks are to satisfy pyright)
commit = pygit2.Repository(new_dir).revparse_single("HEAD")
assert isinstance(commit, pygit2.Commit)
assert commit.message == "auto commit"
Expand Down Expand Up @@ -319,7 +319,7 @@ def test_push_url():
remote_branch="test-branch",
)

# verify commit in remote (the `isinstance` checks are to satsify pyright)
# verify commit in remote (the `isinstance` checks are to satisfy pyright)
commit = remote.revparse_single("test-branch")
assert isinstance(commit, pygit2.Commit)
assert commit.message == "auto commit"
Expand Down Expand Up @@ -361,7 +361,7 @@ def test_push_url_detached_head():
remote_branch="test-branch",
)

# verify commit in remote (the `isinstance` checks are to satsify pyright)
# verify commit in remote (the `isinstance` checks are to satisfy pyright)
commit = remote.revparse_single("test-branch")
assert isinstance(commit, pygit2.Commit)
assert commit.message == "auto commit"
Expand Down Expand Up @@ -397,7 +397,7 @@ def test_push_url_branch():
ref=repo._repo.head.shorthand,
)

# verify commit in remote (the `isinstance` checks are to satsify pyright)
# verify commit in remote (the `isinstance` checks are to satisfy pyright)
commit = remote.revparse_single("test-branch")
assert isinstance(commit, pygit2.Commit)
assert commit.message == "auto commit"
Expand Down Expand Up @@ -434,7 +434,7 @@ def test_push_tags():
push_tags=True,
)

# verify commit through tag in remote (the `isinstance` checks are to satsify pyright)
# verify commit through tag in remote (the `isinstance` checks are to satisfy pyright)
commit = remote.revparse_single(tag)
assert isinstance(commit, pygit2.Commit)
assert commit.message == "auto commit"
Expand Down

0 comments on commit 1619b92

Please sign in to comment.