Skip to content
Snippets Groups Projects
Commit a0fc1aa4 authored by Neda Moeini's avatar Neda Moeini
Browse files

Make ruff and mypy happy

parent 66c400d5
No related branches found
No related tags found
1 merge request!417Fixed import l3 core services bug
Pipeline #93962 passed
...@@ -13,7 +13,9 @@ def test_import_l3_core_service_success(l3_core_service_subscription_factory, pr ...@@ -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) imported_subscription = l3_core_service_subscription_factory(product_name=product_name, is_imported=True)
assert imported_subscription.product.name == PRODUCT_IMPORTED_MAP[product_name] assert imported_subscription.product.name == PRODUCT_IMPORTED_MAP[product_name]
imported_l3_core_service = str(imported_subscription.subscription_id) 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) assert_complete(result)
subscription = SubscriptionModel.from_subscription(imported_l3_core_service) subscription = SubscriptionModel.from_subscription(imported_l3_core_service)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment