@@ -377,7 +377,7 @@ async def test_computation_create_validators(
377377 product_name : str ,
378378 product_api_base_url : AnyHttpUrl ,
379379 with_product : dict [str , Any ],
380- faker_collection_run_id : CollectionRunID ,
380+ fake_collection_run_id : CollectionRunID ,
381381):
382382 user = create_registered_user ()
383383 proj = await create_project (user , workbench = fake_workbench_without_outputs )
@@ -387,15 +387,15 @@ async def test_computation_create_validators(
387387 product_name = product_name ,
388388 product_api_base_url = product_api_base_url ,
389389 use_on_demand_clusters = True ,
390- collection_run_id = faker_collection_run_id ,
390+ collection_run_id = fake_collection_run_id ,
391391 )
392392 ComputationCreate (
393393 user_id = user ["id" ],
394394 project_id = proj .uuid ,
395395 product_name = product_name ,
396396 product_api_base_url = product_api_base_url ,
397397 use_on_demand_clusters = False ,
398- collection_run_id = faker_collection_run_id ,
398+ collection_run_id = fake_collection_run_id ,
399399 )
400400
401401
@@ -409,7 +409,7 @@ async def test_create_computation(
409409 create_registered_user : Callable [..., dict [str , Any ]],
410410 create_project : Callable [..., Awaitable [ProjectAtDB ]],
411411 async_client : httpx .AsyncClient ,
412- faker_collection_run_id : CollectionRunID ,
412+ fake_collection_run_id : CollectionRunID ,
413413):
414414 user = create_registered_user ()
415415 proj = await create_project (user , workbench = fake_workbench_without_outputs )
@@ -422,7 +422,7 @@ async def test_create_computation(
422422 project_id = proj .uuid ,
423423 product_name = product_name ,
424424 product_api_base_url = product_api_base_url ,
425- collection_run_id = faker_collection_run_id ,
425+ collection_run_id = fake_collection_run_id ,
426426 )
427427 ),
428428 )
@@ -518,7 +518,7 @@ async def test_create_computation_with_wallet(
518518 sqlalchemy_async_engine : AsyncEngine ,
519519 fake_ec2_cpus : PositiveInt ,
520520 fake_ec2_ram : ByteSize ,
521- faker_collection_run_id : CollectionRunID ,
521+ fake_collection_run_id : CollectionRunID ,
522522):
523523 # In billable product a wallet is passed, with a selected pricing plan
524524 # the pricing plan contains information about the hardware that should be used
@@ -540,7 +540,7 @@ async def test_create_computation_with_wallet(
540540 product_name = product_name ,
541541 product_api_base_url = product_api_base_url ,
542542 wallet_info = wallet_info ,
543- collection_run_id = faker_collection_run_id ,
543+ collection_run_id = fake_collection_run_id ,
544544 )
545545 ),
546546 )
@@ -627,7 +627,7 @@ async def test_create_computation_with_wallet_with_invalid_pricing_unit_name_rai
627627 create_project : Callable [..., Awaitable [ProjectAtDB ]],
628628 async_client : httpx .AsyncClient ,
629629 wallet_info : WalletInfo ,
630- faker_collection_run_id : CollectionRunID ,
630+ fake_collection_run_id : CollectionRunID ,
631631):
632632 user = create_registered_user ()
633633 proj = await create_project (
@@ -644,7 +644,7 @@ async def test_create_computation_with_wallet_with_invalid_pricing_unit_name_rai
644644 product_name = product_name ,
645645 product_api_base_url = product_api_base_url ,
646646 wallet_info = wallet_info ,
647- collection_run_id = faker_collection_run_id ,
647+ collection_run_id = fake_collection_run_id ,
648648 )
649649 ),
650650 )
@@ -672,7 +672,7 @@ async def test_create_computation_with_wallet_with_no_clusters_keeper_raises_503
672672 create_project : Callable [..., Awaitable [ProjectAtDB ]],
673673 async_client : httpx .AsyncClient ,
674674 wallet_info : WalletInfo ,
675- faker_collection_run_id : CollectionRunID ,
675+ fake_collection_run_id : CollectionRunID ,
676676):
677677 user = create_registered_user ()
678678 proj = await create_project (user , workbench = fake_workbench_without_outputs )
@@ -686,7 +686,7 @@ async def test_create_computation_with_wallet_with_no_clusters_keeper_raises_503
686686 product_name = product_name ,
687687 product_api_base_url = product_api_base_url ,
688688 wallet_info = wallet_info ,
689- collection_run_id = faker_collection_run_id ,
689+ collection_run_id = fake_collection_run_id ,
690690 )
691691 ),
692692 )
@@ -727,7 +727,7 @@ async def test_start_computation(
727727 create_registered_user : Callable [..., dict [str , Any ]],
728728 create_project : Callable [..., Awaitable [ProjectAtDB ]],
729729 async_client : httpx .AsyncClient ,
730- faker_collection_run_id : CollectionRunID ,
730+ fake_collection_run_id : CollectionRunID ,
731731):
732732 user = create_registered_user ()
733733 proj = await create_project (user , workbench = fake_workbench_without_outputs )
@@ -741,7 +741,7 @@ async def test_start_computation(
741741 start_pipeline = True ,
742742 product_name = product_name ,
743743 product_api_base_url = product_api_base_url ,
744- collection_run_id = faker_collection_run_id ,
744+ collection_run_id = fake_collection_run_id ,
745745 )
746746 ),
747747 )
@@ -813,7 +813,7 @@ async def test_start_computation_with_deprecated_services_raises_406(
813813 create_registered_user : Callable [..., dict [str , Any ]],
814814 create_project : Callable [..., Awaitable [ProjectAtDB ]],
815815 async_client : httpx .AsyncClient ,
816- faker_collection_run_id : CollectionRunID ,
816+ fake_collection_run_id : CollectionRunID ,
817817):
818818 user = create_registered_user ()
819819 proj = await create_project (user , workbench = fake_workbench_without_outputs )
@@ -827,7 +827,7 @@ async def test_start_computation_with_deprecated_services_raises_406(
827827 start_pipeline = True ,
828828 product_name = product_name ,
829829 product_api_base_url = product_api_base_url ,
830- collection_run_id = faker_collection_run_id ,
830+ collection_run_id = fake_collection_run_id ,
831831 )
832832 ),
833833 )
0 commit comments