Skip to content

Commit

Permalink
fix cr
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha committed Jul 31, 2024
1 parent ea921d2 commit b6b373d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/towncrier/test/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1635,7 +1635,7 @@ def test_invalid_fragment_name(self, runner):
config="""
[tool.towncrier]
package = "foo"
template = ["template.jinja"]
template = "foo/newsfragments/template.jinja"
"""
)
def test_ignored_template_string(self, runner):
Expand All @@ -1645,7 +1645,7 @@ def test_ignored_template_string(self, runner):
with open("foo/newsfragments/123.feature", "w") as f:
f.write("This has valid filename (control case)")
with open("foo/newsfragments/template.jinja", "w") as f:
f.write("This template has been automatically ignored")
f.write("Template file should be automatically ignored")
with open("foo/newsfragments/.gitignore", "w") as f:
f.write("gitignore is automatically ignored")

Expand Down

0 comments on commit b6b373d

Please sign in to comment.