Skip to content

Commit bab1780

Browse files
authored
Update test_client.py
1 parent 4664a45 commit bab1780

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/unit/test_client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8749,10 +8749,7 @@ def test_load_table_from_dataframe_with_csv_source_format(self):
87498749
sent_config = load_table_from_file.mock_calls[0][2]["job_config"]
87508750
assert sent_config.source_format == job.SourceFormat.CSV
87518751

8752-
@unittest.skipIf(
8753-
pandas is None or PANDAS_INSTALLED_VERSION < PANDAS_MINIUM_VERSION,
8754-
"Only `pandas version >=1.0.0` supported",
8755-
)
8752+
@unittest.skipIf(pandas is None, "Requires `pandas`")
87568753
@unittest.skipIf(pyarrow is None, "Requires `pyarrow`")
87578754
def test_load_table_from_dataframe_w_higher_scale_decimal128_datatype(self):
87588755
from google.cloud.bigquery.client import _DEFAULT_NUM_RETRIES

0 commit comments

Comments
 (0)