We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88f8ad7 commit c1489abCopy full SHA for c1489ab
1 file changed
integration_tests/web/test_issue_594.py
@@ -40,7 +40,7 @@ def test_issue_594(self):
40
external_id=external_id,
41
external_url=external_url,
42
title="Good Old Slack Logo",
43
- indexable_file_contents="Good Old Slack Logo",
+ indexable_file_contents="Good Old Slack Logo".encode("utf-8"),
44
preview_image=image,
45
)
46
self.assertIsNotNone(creation)
@@ -76,7 +76,7 @@ def test_no_preview_image(self):
76
77
78
title="Slack (Wikipedia)",
79
- indexable_file_contents="Slack is a proprietary business communication platform developed by Slack Technologies.",
+ indexable_file_contents="Slack is a proprietary business communication platform developed by Slack Technologies.".encode("utf-8"),
80
81
82
0 commit comments