diff --git a/tests/unit/test_client.py b/tests/unit/test_client.py index ca5250c49..e83c65a24 100644 --- a/tests/unit/test_client.py +++ b/tests/unit/test_client.py @@ -8891,10 +8891,7 @@ def test_load_table_from_dataframe_with_csv_source_format(self): sent_config = load_table_from_file.mock_calls[0][2]["job_config"] assert sent_config.source_format == job.SourceFormat.CSV - @unittest.skipIf( - pandas is None or PANDAS_INSTALLED_VERSION < PANDAS_MINIUM_VERSION, - "Only `pandas version >=1.0.0` supported", - ) + @unittest.skipIf(pandas is None, "Requires `pandas`") @unittest.skipIf(pyarrow is None, "Requires `pyarrow`") def test_load_table_from_dataframe_w_higher_scale_decimal128_datatype(self): from google.cloud.bigquery.client import _DEFAULT_NUM_RETRIES