From 4f57390659110bc77b19de525cdb17c0a73bbe00 Mon Sep 17 00:00:00 2001 From: LProcopi15 Date: Fri, 17 Jan 2025 08:40:25 -0800 Subject: [PATCH] lint unit test --- tests/unit/test_iceberg_location.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/unit/test_iceberg_location.py b/tests/unit/test_iceberg_location.py index 58529e4e9..dca82b47e 100644 --- a/tests/unit/test_iceberg_location.py +++ b/tests/unit/test_iceberg_location.py @@ -73,9 +73,7 @@ def test_iceberg_no_path(iceberg_config: dict[str, str]): del iceberg_config["base_location_subpath"] expected_base_location = ( - f"'_dbt/" - f"{iceberg_config['schema']}/" - f"{iceberg_config['identifier']}'" + f"'_dbt/" f"{iceberg_config['schema']}/" f"{iceberg_config['identifier']}'" ).strip() assert get_actual_base_location(iceberg_config) == expected_base_location