diff --git a/tests/integ/scala/test_dataframe_reader_suite.py b/tests/integ/scala/test_dataframe_reader_suite.py index 81738b091ca..791dba2bcad 100644 --- a/tests/integ/scala/test_dataframe_reader_suite.py +++ b/tests/integ/scala/test_dataframe_reader_suite.py @@ -1417,7 +1417,13 @@ def test_filepath_not_exist_or_empty(session): def test_filepath_with_single_quote(session): test_file_on_stage_with_quote = f"'@{tmp_stage_name1}/{test_file_csv}'" test_file_on_stage = f"@{tmp_stage_name1}/{test_file_csv}" - result1 = session.read.option("INFER_SCHEMA", True).csv(test_file_on_stage).collect() - result2 = session.read.option("INFER_SCHEMA", True).csv(test_file_on_stage_with_quote).collect() + result1 = ( + session.read.option("INFER_SCHEMA", True).csv(test_file_on_stage).collect() + ) + result2 = ( + session.read.option("INFER_SCHEMA", True) + .csv(test_file_on_stage_with_quote) + .collect() + ) assert result1 == result2