Skip to content

Commit 29588ab

Browse files
committed
tests(sync[git]) Update for libtmux v0.31.0 cached fixtures
1 parent cdabf4e commit 29588ab

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/test_sync.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ def test_config_variations(
146146
remote_list: list[str],
147147
) -> None:
148148
"""Test vcspull sync'ing across a variety of configurations."""
149-
dummy_repo_name = "dummy_repo"
150-
dummy_repo = create_git_remote_repo(remote_repo_name=dummy_repo_name)
149+
dummy_repo = create_git_remote_repo()
151150

152151
config_file = write_config_remote(
153152
config_path=tmp_path / "myrepos.yaml",
@@ -252,11 +251,10 @@ def test_updating_remote(
252251
has_extra_remotes: bool,
253252
) -> None:
254253
"""Verify yaml configuration state is applied and reflected to local VCS clone."""
255-
dummy_repo_name = "dummy_repo"
256-
dummy_repo = create_git_remote_repo(remote_repo_name=dummy_repo_name)
254+
dummy_repo = create_git_remote_repo()
257255

258256
mirror_name = "mirror_repo"
259-
mirror_repo = create_git_remote_repo(remote_repo_name=mirror_name)
257+
mirror_repo = create_git_remote_repo()
260258

261259
repo_parent = tmp_path / "study" / "myrepo"
262260
repo_parent.mkdir(parents=True)

0 commit comments

Comments
 (0)