From 83632dda896531a8283e36a4dce9c1d940e7f840 Mon Sep 17 00:00:00 2001
From: Chris Holdgraf <choldgraf@berkeley.edu>
Date: Tue, 7 Feb 2023 20:50:45 +0100
Subject: [PATCH] Fix test for cookiecutter (#1926)
---
docs/intro.md | 2 +-
tests/test_build.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/intro.md b/docs/intro.md
index 936f8255..de484fdb 100644
--- a/docs/intro.md
+++ b/docs/intro.md
@@ -166,7 +166,7 @@ Explore this book {fas}`arrow-right`
**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
```
diff --git a/tests/test_build.py b/tests/test_build.py
index 7f03f8e4..1db68327 100644
--- a/tests/test_build.py
+++ b/tests/test_build.py
@@ -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 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", "my_book").iterdir())) == 8
+ assert len(list(book.joinpath("my_book", "my_book").iterdir())) == 9
def test_build_from_template(temp_with_override, cli):
--
GitLab