Skip to content

Commit d55f322

Browse files
committed
fix unit tests
1 parent 896db65 commit d55f322

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release/changelog_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def test_invalid_date(self):
6868
with self.assertRaises(Exception) as context:
6969
extract_date_and_kind_from_file_name("20250640_refactor_codebase.md")
7070
self.assertEqual(
71-
str(context.exception), "20250640_refactor_codebase.md - date 20250640 is not in the expected format %Y%m%d"
71+
str(context.exception),
72+
"20250640_refactor_codebase.md - date '20250640' is not in the expected format %Y%m%d",
7273
)
7374

7475
def test_wrong_file_name_format_date(self):

0 commit comments

Comments
 (0)