Skip to content

Commit 05d5e53

Browse files
style: format test_bigquery_cache.py with ruff
Co-Authored-By: Aaron <AJ> Steers <aj@airbyte.io>
1 parent b13538c commit 05d5e53

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/integration_tests/test_bigquery_cache.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_decimal_type_conversion(
3535
) -> None:
3636
"""Test that DECIMAL(38,9) types are correctly converted to BigQuery NUMERIC types."""
3737
table_name = f"test_decimal_{text_util.generate_random_suffix()}"
38-
38+
3939
try:
4040
# Verify type conversion
4141
converter = BigQueryTypeConverter()
@@ -74,5 +74,7 @@ def test_decimal_type_conversion(
7474

7575
finally:
7676
# Clean up
77-
cleanup_sql = f"DROP TABLE IF EXISTS {new_bigquery_cache.schema_name}.{table_name}"
77+
cleanup_sql = (
78+
f"DROP TABLE IF EXISTS {new_bigquery_cache.schema_name}.{table_name}"
79+
)
7880
new_bigquery_cache._execute_sql(cleanup_sql)

0 commit comments

Comments
 (0)