Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek committed Nov 9, 2023
1 parent bf2ee83 commit bded245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/tests/events_ml_parser_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_subjects(self):

self.assertTrue(self.item["invitation_details"].startswith("<p>"))
url = "www.foobar.com/event/invitation"
link = f'<a href="{url}" target="_blank">{url}</a>'
link = f'<a href="https://{url}" target="_blank">{url}</a>'
self.assertTrue(self.item["invitation_details"].startswith("<p>"))
self.assertIn(link, self.item["invitation_details"])

Expand Down

0 comments on commit bded245

Please sign in to comment.