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 4cdd66e commit fe3d5f0Copy full SHA for fe3d5f0
tests/sync/test_git.py
@@ -172,17 +172,17 @@ def test_repo_update_handle_cases(
172
)
173
def test_repo_update_stash_cases(
174
tmp_path: pathlib.Path,
175
- create_git_remote_repo: CreateRepoPytestFixtureFn,
+ create_git_remote_bare_repo: CreateRepoPytestFixtureFn,
176
mocker: MockerFixture,
177
has_untracked_files: bool,
178
needs_stash: bool,
179
has_remote_changes: bool,
180
) -> None:
181
"""Test GitSync.update_repo() stash cases."""
182
- git_remote_repo = create_git_remote_repo()
+ git_bare_repo = create_git_remote_bare_repo()
183
184
git_repo: GitSync = GitSync(
185
- url=git_remote_repo.as_uri(),
+ url=git_bare_repo.as_uri(),
186
path=tmp_path / "myrepo",
187
vcs="git",
188
0 commit comments