Skip to content

Commit f65ebe2

Browse files
ruff wrap
1 parent 3e54acd commit f65ebe2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_build_docs.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from pathlib import Path
21
from unittest.mock import patch
32

43
import pytest
@@ -38,7 +37,9 @@ def test_build_robots_txt(mock_chgrp, tmp_path) -> None:
3837
Version(name="3.17", status="stable", branch_or_tag="2.17"),
3938
])
4039

41-
build_robots_txt(versions, tmp_path, group="", skip_cache_invalidation=True, http=None)
40+
build_robots_txt(
41+
versions, tmp_path, group="", skip_cache_invalidation=True, http=None
42+
)
4243

4344
result = (tmp_path / "robots.txt").read_text()
4445
assert "Disallow: /3.14/" in result

0 commit comments

Comments
 (0)