From aa41e49f4558e03ef97a6401232534c1bc9b73a7 Mon Sep 17 00:00:00 2001 From: MithunR Date: Tue, 2 Jul 2024 17:04:28 -0700 Subject: [PATCH] Updated linked issue for skipped test. --- integration_tests/src/main/python/get_json_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration_tests/src/main/python/get_json_test.py b/integration_tests/src/main/python/get_json_test.py index 02cfc73a0b6..e31d2790ac8 100644 --- a/integration_tests/src/main/python/get_json_test.py +++ b/integration_tests/src/main/python/get_json_test.py @@ -128,7 +128,8 @@ def test_get_json_object_normalize_non_string_output(): conf={'spark.rapids.sql.expression.GetJsonObject': 'true'}) -@pytest.mark.skipif(condition= spark_version() >= "4.0", reason="TODO: Issue for failing test.") +@pytest.mark.skipif(condition= spark_version() >= "4.0", + reason="https://github.com/NVIDIA/spark-rapids/issues/11130") def test_get_json_object_quoted_question(): schema = StructType([StructField("jsonStr", StringType())]) data = [[r'{"?":"QUESTION"}']]