Skip to content

Commit 85b965f

Browse files
Fix path and whitespace issues
1 parent 76918eb commit 85b965f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/docs/test_readme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_assemble_readme_from_docs(usethis_dev_dir: Path):
3333
)
3434
)
3535
parts.append(_get_doc_file(usethis_dev_dir / "docs" / "similar-projects.md"))
36-
parts.append(_get_doc_file(usethis_dev_dir / "docs" / "ref" / "about-license.md"))
36+
parts.append(_get_doc_file(usethis_dev_dir / "docs" / "about-license.md"))
3737

3838
content = (
3939
(usethis_dev_dir / "README.md")

tests/usethis/_tool/impl/test_ruff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def test_pyproject_toml_exists(self, tmp_path: Path):
375375
@pytest.mark.usefixtures("_vary_network_conn")
376376
def test_latest_version(self, tmp_path: Path):
377377
if os.getenv("CI"):
378-
pytest.skip("Avoid flaky pipelines by testing version bumps manually")
378+
pytest.skip("Avoid flaky pipelines by testing version bumps manually")
379379

380380
with change_cwd(tmp_path), files_manager():
381381
# Arrange

0 commit comments

Comments
 (0)