File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,11 @@ pub struct TriggerData {
359359
360360impl TriggerData {
361361 pub fn new ( source : DeploymentHash , entity : EntitySourceOperation , source_idx : u32 ) -> Self {
362- Self { source, entity, source_idx }
362+ Self {
363+ source,
364+ entity,
365+ source_idx,
366+ }
363367 }
364368
365369 pub fn entity_type ( & self ) -> & str {
Original file line number Diff line number Diff line change @@ -180,7 +180,11 @@ pub fn push_test_subgraph_trigger(
180180
181181 block
182182 . trigger_data
183- . push ( Trigger :: Subgraph ( subgraph:: TriggerData { source, entity, source_idx } ) ) ;
183+ . push ( Trigger :: Subgraph ( subgraph:: TriggerData {
184+ source,
185+ entity,
186+ source_idx,
187+ } ) ) ;
184188}
185189
186190pub fn push_test_command (
You can’t perform that action at this time.
0 commit comments