Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
einarmo committed Nov 21, 2023
1 parent d67c8d2 commit 3fdf591
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests_integration/test_cdf_upload_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ def test_file_upload_queue(self):
file1 = self.client.files.download_bytes(external_id=self.file1)
file2 = self.client.files.download_bytes(external_id=self.file2)

assert file1 == b"test content"
assert file2 == b"other test content"
assert file1 == b"test content\n"
assert file2 == b"other test content\n"

def test_bytes_upload_queue(self):
queue = BytesUploadQueue(cdf_client=self.client, overwrite_existing=True)
Expand Down

0 comments on commit 3fdf591

Please sign in to comment.