Skip to content

Commit be602a6

Browse files
committed
use - in the example to ensure it uses the right one
1 parent adcbbf7 commit be602a6

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

cookiecutter.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"project_name": "TODO",
2+
"project_name": "replace-me",
33
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
4-
"project_short_description": "TODO",
4+
"project_short_description": "A brief description of the project",
55
"company_name": "Zenable Inc",
66
"company_domain": "zenable.io",
77
"github_org": "zenable-io",

tests/test_cookiecutter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@ def test_default_project(cookies):
273273
env=env,
274274
)
275275

276-
default_image = "zenable-io/todo:latest"
276+
# It's important that this has -s in the name to test the docker hub image name sanitization
277+
default_image = "zenable-io/replace-me:latest"
277278

278279
# Ensure that --help exits 0
279280
subprocess.run(

0 commit comments

Comments
 (0)