Skip to content

Commit b45643f

Browse files
committed
fix: failing tests
1 parent 44f6ba1 commit b45643f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_cookiecutter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ def test_cookiecutter_all_options(
4444
assert num_items(path, ["docs"]) == 9
4545
print(f"Checking pair: {open_source_license}, {include_github_actions}")
4646
if open_source_license == "None":
47-
if include_github_actions in ["ci", "cd"]:
47+
if include_github_actions in ["ci", "ci+cd"]:
4848
assert num_items(path, [".github", "workflows"]) == 1
4949
assert num_items(path) == 11
5050
else:
5151
assert num_items(path) == 10
5252
else:
53-
if include_github_actions in ["ci", "cd"]:
53+
if include_github_actions in ["ci", "ci+cd"]:
5454
assert num_items(path, [".github", "workflows"]) == 1
5555
assert num_items(path) == 12
5656
else:

0 commit comments

Comments
 (0)