Skip to content
Snippets Groups Projects
Unverified Commit 83632dda authored by Chris Holdgraf's avatar Chris Holdgraf Committed by GitHub
Browse files

Fix test for cookiecutter (#1926)

parent e5268915
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,7 @@ Explore this book {fas}`arrow-right` ...@@ -166,7 +166,7 @@ Explore this book {fas}`arrow-right`
**The Turing Way** **The Turing Way**
^^^ ^^^
```{image} https://the-turing-way.netlify.app/_static/logo.jpg ```{image} https://the-turing-way.netlify.app/_static/logo-detail-with-text.svg
:height: 100 :height: 100
``` ```
......
...@@ -34,7 +34,7 @@ def test_create_from_cookiecutter(temp_with_override: Path, cli): ...@@ -34,7 +34,7 @@ def test_create_from_cookiecutter(temp_with_override: Path, cli):
assert book.joinpath("my_book", "my_book", "_config.yml").exists() assert book.joinpath("my_book", "my_book", "_config.yml").exists()
assert len(list(book.joinpath("my_book").iterdir())) == 7 assert len(list(book.joinpath("my_book").iterdir())) == 7
assert len(list(book.joinpath("my_book", ".github", "workflows").iterdir())) == 1 assert len(list(book.joinpath("my_book", ".github", "workflows").iterdir())) == 1
assert len(list(book.joinpath("my_book", "my_book").iterdir())) == 8 assert len(list(book.joinpath("my_book", "my_book").iterdir())) == 9
def test_build_from_template(temp_with_override, cli): def test_build_from_template(temp_with_override, cli):
......
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