diff --git a/test/workflows/l3_core_service/test_import_l3_core_service.py b/test/workflows/l3_core_service/test_import_l3_core_service.py
index e455851aac6d1b0c9d8dd74919bd911369bdea97..b9733e19a4e858eccab005947afcc96b25320d9a 100644
--- a/test/workflows/l3_core_service/test_import_l3_core_service.py
+++ b/test/workflows/l3_core_service/test_import_l3_core_service.py
@@ -13,7 +13,9 @@ def test_import_l3_core_service_success(l3_core_service_subscription_factory, pr
     imported_subscription = l3_core_service_subscription_factory(product_name=product_name, is_imported=True)
     assert imported_subscription.product.name == PRODUCT_IMPORTED_MAP[product_name]
     imported_l3_core_service = str(imported_subscription.subscription_id)
-    result, _, _ = run_workflow(L3_IMPORT_WF_MAP[f"Imported {product_name}"], [{"subscription_id": imported_l3_core_service}])
+    result, _, _ = run_workflow(
+        L3_IMPORT_WF_MAP[f"Imported {product_name}"], [{"subscription_id": imported_l3_core_service}]
+    )
     assert_complete(result)
 
     subscription = SubscriptionModel.from_subscription(imported_l3_core_service)