Skip to content

Commit feb8655

Browse files
committed
format
1 parent 16c639c commit feb8655

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

tests/test_project.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,8 @@ def test_manifest_simple_build(tmp_path: Path) -> None:
120120
project.get_target("web").build()
121121
assert (prj_path / "output" / "web" / "index.html").exists()
122122
project.get_target("rs").build()
123-
assert (
124-
prj_path / "output" / "rs" / "index.html"
125-
).exists()
126-
assert (
127-
prj_path / "output" / "rs" / "runestone-manifest.xml"
128-
).exists()
123+
assert (prj_path / "output" / "rs" / "index.html").exists()
124+
assert (prj_path / "output" / "rs" / "runestone-manifest.xml").exists()
129125
if HAS_XELATEX:
130126
project.get_target("print").build()
131127
assert (prj_path / "output" / "print" / "main.pdf").exists()

0 commit comments

Comments
 (0)