Skip to content

Commit

Permalink
Avoid struct aliasing in test_round_robin_sort_fallback (#2986)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lowe <jlowe@nvidia.com>
  • Loading branch information
jlowe authored Jul 21, 2021
1 parent 84a82f9 commit 283d87c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration_tests/src/main/python/repart_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def test_repartition_df(data_gen, num_parts, length):
('a_1_2', float_gen),
('a_1_3', double_gen)
])),
('b_1', long_gen)
('b_1', long_gen),
('c_1', int_gen)
]))],
[('a', simple_string_to_string_map_gen)]], ids=idfn)
@ignore_order(local=True) # To avoid extra data shuffle by 'sort on Spark' for this repartition test.
Expand Down

0 comments on commit 283d87c

Please sign in to comment.