Skip to content

Commit

Permalink
jfc windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Sep 16, 2022
1 parent 4dd0f15 commit 6a1a1f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/towncrier/test/test_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def test_fragment_exists(self, runner):

self.assertTrue(
result.output.endswith("Found:\n1. " + str(fragment_path) + "\n"),
result.output,
(result.output, str(fragment_path)),
)
self.assertEqual(0, result.exit_code, result.output)

Expand All @@ -141,7 +141,7 @@ def test_fragment_exists_hidden(self, runner):

self.assertTrue(
result.output.endswith("Found:\n1. " + str(fragment_path) + "\n"),
result.output,
(result.output, str(fragment_path)),
)
self.assertEqual(0, result.exit_code, result.output)

Expand Down

0 comments on commit 6a1a1f9

Please sign in to comment.