Skip to content

Commit c463b77

Browse files
committed
Fix test - input bytes will differ, table data is random
1 parent 6c92f44 commit c463b77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_copy_into.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def test_copy_into_stage_and_table(self, connection):
236236
eq_(r.rowcount, 1000)
237237
copy_into_results = r.context.copy_into_location_results()
238238
eq_(copy_into_results['rows_unloaded'], 1000)
239-
eq_(copy_into_results['input_bytes'], 16250)
239+
# eq_(copy_into_results['input_bytes'], 16250) # input bytes will differ, the table is random
240240
# eq_(copy_into_results['output_bytes'], 4701) # output bytes differs
241241

242242
# now copy into table

0 commit comments

Comments
 (0)