Skip to content

Commit c1489ab

Browse files
committed
Fix broken integration tests
1 parent 88f8ad7 commit c1489ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integration_tests/web/test_issue_594.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_issue_594(self):
4040
external_id=external_id,
4141
external_url=external_url,
4242
title="Good Old Slack Logo",
43-
indexable_file_contents="Good Old Slack Logo",
43+
indexable_file_contents="Good Old Slack Logo".encode("utf-8"),
4444
preview_image=image,
4545
)
4646
self.assertIsNotNone(creation)
@@ -76,7 +76,7 @@ def test_no_preview_image(self):
7676
external_id=external_id,
7777
external_url=external_url,
7878
title="Slack (Wikipedia)",
79-
indexable_file_contents="Slack is a proprietary business communication platform developed by Slack Technologies.",
79+
indexable_file_contents="Slack is a proprietary business communication platform developed by Slack Technologies.".encode("utf-8"),
8080
)
8181
self.assertIsNotNone(creation)
8282

0 commit comments

Comments
 (0)