From 68e98fed6544e3e8aa12c858c0012fada960126c Mon Sep 17 00:00:00 2001 From: MithunR Date: Tue, 5 Nov 2024 11:49:03 -0800 Subject: [PATCH] Remove skip for test_unsupported_fallback_substring_index. Signed-off-by: MithunR --- integration_tests/src/main/python/string_test.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/integration_tests/src/main/python/string_test.py b/integration_tests/src/main/python/string_test.py index 2163847933f..03c022bb201 100644 --- a/integration_tests/src/main/python/string_test.py +++ b/integration_tests/src/main/python/string_test.py @@ -104,10 +104,6 @@ def test_substring_index(data_gen,delim): @allow_non_gpu('ProjectExec') -@pytest.mark.skipif(condition=is_spark_400_or_later(), - reason="Bug in Apache Spark 4.0 causes NumberFormatExceptions from substring_index(), " - "if called with index==null. For further information, see: " - "https://issues.apache.org/jira/browse/SPARK-48989.") @pytest.mark.parametrize('data_gen', [mk_str_gen('([ABC]{0,3}_?){0,7}')], ids=idfn) def test_unsupported_fallback_substring_index(data_gen): delim_gen = StringGen(pattern="_")