From ea63917ae22b1bf88589cf7589b4159758487c73 Mon Sep 17 00:00:00 2001 From: Thomas Graves Date: Tue, 9 Feb 2021 19:58:45 -0600 Subject: [PATCH] remove xfail for spark 3.1.0 test test_broadcast_join_mixed Signed-off-by: Thomas Graves --- integration_tests/src/main/python/join_test.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/integration_tests/src/main/python/join_test.py b/integration_tests/src/main/python/join_test.py index d4a68cebab4..a904c489be4 100644 --- a/integration_tests/src/main/python/join_test.py +++ b/integration_tests/src/main/python/join_test.py @@ -170,11 +170,7 @@ def do_join(spark): ('b', StringGen()), ('c', BooleanGen())] @ignore_order -@pytest.mark.parametrize('join_type', ['Left', 'Right', 'Inner', 'LeftSemi', 'LeftAnti', - pytest.param('FullOuter', marks=pytest.mark.xfail( - condition=not(is_before_spark_310()), - reason='https://github.com/NVIDIA/spark-rapids/issues/575')), - 'Cross'], ids=idfn) +@pytest.mark.parametrize('join_type', ['Left', 'Right', 'Inner', 'LeftSemi', 'LeftAnti', 'FullOuter', 'Cross'], ids=idfn) def test_broadcast_join_mixed(join_type): def do_join(spark): left = gen_df(spark, _mixed_df1_with_nulls, length=500)