We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43313a1 commit 85dd3e7Copy full SHA for 85dd3e7
tests/sync/test_git.py
@@ -174,17 +174,17 @@ def test_repo_update_handle_cases(
174
)
175
def test_repo_update_stash_cases(
176
tmp_path: pathlib.Path,
177
- create_git_remote_repo: CreateRepoPytestFixtureFn,
+ create_git_remote_bare_repo: CreateRepoPytestFixtureFn,
178
mocker: MockerFixture,
179
has_untracked_files: bool,
180
needs_stash: bool,
181
has_remote_changes: bool,
182
) -> None:
183
"""Test GitSync.update_repo() stash cases."""
184
- git_remote_repo = create_git_remote_repo()
+ git_bare_repo = create_git_remote_bare_repo()
185
186
git_repo: GitSync = GitSync(
187
- url=git_remote_repo.as_uri(),
+ url=git_bare_repo.as_uri(),
188
path=tmp_path / "myrepo",
189
vcs="git",
190
0 commit comments