Skip to content
Snippets Groups Projects
Commit f36332c7 authored by Stefan Sperling's avatar Stefan Sperling
Browse files

in cvs loader tests, use f-strings to build repository URLs

Summary: Suggested by ardumont in D6566

Reviewers: #reviewers, vlorentz

Reviewed By: #reviewers, vlorentz

Differential Revision: https://forge.softwareheritage.org/D6585
parent 939dd546
No related branches found
No related tags found
1 merge request!20in cvs loader tests, use f-strings to build repository URLs
......@@ -278,7 +278,7 @@ def test_loader_cvs_visit_pserver(swh_storage, datadir, tmp_path):
repo_url += "/runbaby" # CVS module name
# Ask our cvsclient to connect via the 'cvs server' command
repo_url = "fake://" + repo_url[7:]
repo_url = f"fake://{repo_url[7:]}"
loader = CvsLoader(
swh_storage, repo_url, cvsroot_path=os.path.join(tmp_path, archive_name)
......@@ -329,7 +329,7 @@ def test_loader_cvs_visit_pserver_no_eol(swh_storage, datadir, tmp_path):
repo_url += "/greek-tree" # CVS module name
# Ask our cvsclient to connect via the 'cvs server' command
repo_url = "fake://" + repo_url[7:]
repo_url = f"fake://{repo_url[7:]}"
loader = CvsLoader(
swh_storage, repo_url, cvsroot_path=os.path.join(tmp_path, extracted_name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment