Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisclark committed Aug 22, 2024
1 parent 8d2b76a commit c8d2e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explorer/tests/test_assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_truncates_long_binary_data(self):
header, row = ret

self.assertEqual(header, ["col1", "col2"])
self.assertEqual(row[0], b"a" * 500 + b"...")
self.assertEqual(row[0], b"a" * 200 + b"...")
self.assertEqual(row[1], b"short binary")

def test_handles_various_data_types(self):
Expand Down

0 comments on commit c8d2e16

Please sign in to comment.