@@ -61,37 +61,34 @@ TEST_CASE("Cached function calls", "[data model]")
6161
6262 // Register providers
6363 g.provide (" provide_number" , provide_number, concurrency::unlimited)
64- .output_product (product_query{.creator = " input" _id , .layer = " run" _id , .suffix = " number" _id });
64+ .output_product (product_query{.creator = " input" , .layer = " run" , .suffix = " number" });
6565 g.provide (" provide_another" , provide_another, concurrency::unlimited)
66- .output_product (
67- product_query{.creator = " input" _id, .layer = " subrun" _id, .suffix = " another" _id});
66+ .output_product (product_query{.creator = " input" , .layer = " subrun" , .suffix = " another" });
6867 g.provide (" provide_still" , provide_still, concurrency::unlimited)
69- .output_product (
70- product_query{.creator = " input" _id, .layer = " event" _id, .suffix = " still" _id});
68+ .output_product (product_query{.creator = " input" , .layer = " event" , .suffix = " still" });
7169
7270 g.transform (" A1" , call_one, concurrency::unlimited)
73- .input_family (product_query{.creator = " input" _id , .layer = " run" _id , .suffix = " number" _id })
71+ .input_family (product_query{.creator = " input" , .layer = " run" , .suffix = " number" })
7472 .output_products (" one" );
7573 g.transform (" A2" , call_one, concurrency::unlimited)
76- .input_family (product_query{.creator = " A1" _id , .layer = " run" _id , .suffix = " one" _id })
74+ .input_family (product_query{.creator = " A1" , .layer = " run" , .suffix = " one" })
7775 .output_products (" used_one" );
7876 g.transform (" A3" , call_one, concurrency::unlimited)
79- .input_family (product_query{.creator = " A2" _id , .layer = " run" _id , .suffix = " used_one" _id })
77+ .input_family (product_query{.creator = " A2" , .layer = " run" , .suffix = " used_one" })
8078 .output_products (" done_one" );
8179
8280 g.transform (" B1" , call_two, concurrency::unlimited)
83- .input_family (
84- product_query{.creator = " A1" _id, .layer = " run" _id, .suffix = " one" _id},
85- product_query{.creator = " input" _id, .layer = " subrun" _id, .suffix = " another" _id})
81+ .input_family (product_query{.creator = " A1" , .layer = " run" , .suffix = " one" },
82+ product_query{.creator = " input" , .layer = " subrun" , .suffix = " another" })
8683 .output_products (" two" );
8784 g.transform (" B2" , call_two, concurrency::unlimited)
88- .input_family (product_query{.creator = " A2" _id , .layer = " run" _id , .suffix = " used_one" _id },
89- product_query{.creator = " B1" _id , .layer = " subrun" _id , .suffix = " two" _id })
85+ .input_family (product_query{.creator = " A2" , .layer = " run" , .suffix = " used_one" },
86+ product_query{.creator = " B1" , .layer = " subrun" , .suffix = " two" })
9087 .output_products (" used_two" );
9188
9289 g.transform (" C" , call_two, concurrency::unlimited)
93- .input_family (product_query{.creator = " B2" _id , .layer = " subrun" _id , .suffix = " used_two" _id },
94- product_query{.creator = " input" _id , .layer = " event" _id , .suffix = " still" _id })
90+ .input_family (product_query{.creator = " B2" , .layer = " subrun" , .suffix = " used_two" },
91+ product_query{.creator = " input" , .layer = " event" , .suffix = " still" })
9592 .output_products (" three" );
9693
9794 g.execute ();
0 commit comments