fix filenames

This commit is contained in:
phail
2022-11-20 19:53:57 +01:00
parent 7ab45080b7
commit d50e9e589a
2 changed files with 4 additions and 4 deletions

View File

@@ -437,7 +437,7 @@ class TestParser(TestCase):
result = self.parser.transform_inline_html(html, attachments)
resulting_html = result[-1][1].read()
self.assertTrue(result[-1][0] == "email_msg_template.html")
self.assertTrue(result[-1][0] == "index.html")
self.assertTrue(result[0][0] in resulting_html)
self.assertFalse("<script" in resulting_html.lower())
@@ -485,7 +485,7 @@ class TestParser(TestCase):
mock_post.call_args.kwargs["files"]["cidpart1pNdUSz0sD3NqVtPgexamplede"][
1
].read()
mock_post.call_args.kwargs["files"]["email_msg_template.html"][1].read()
mock_post.call_args.kwargs["files"]["index.html"][1].read()
mock_response.raise_for_status.assert_called_once()