Skip to content

Commit 75f793f

Browse files
LinchinGaurang033
authored andcommitted
Update test_client.py
1 parent 737dc41 commit 75f793f

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
@@ -8891,10 +8891,7 @@ def test_load_table_from_dataframe_with_csv_source_format(self):
88918891
sent_config = load_table_from_file.mock_calls[0][2]["job_config"]
88928892
assert sent_config.source_format == job.SourceFormat.CSV
88938893

8894-
@unittest.skipIf(
8895-
pandas is None or PANDAS_INSTALLED_VERSION < PANDAS_MINIUM_VERSION,
8896-
"Only `pandas version >=1.0.0` supported",
8897-
)
8894+
@unittest.skipIf(pandas is None, "Requires `pandas`")
88988895
@unittest.skipIf(pyarrow is None, "Requires `pyarrow`")
88998896
def test_load_table_from_dataframe_w_higher_scale_decimal128_datatype(self):
89008897
from google.cloud.bigquery.client import _DEFAULT_NUM_RETRIES

0 commit comments

Comments
 (0)