@@ -144,7 +144,6 @@ where
144144///
145145/// #[async_trait]
146146/// impl Node<WorkflowState> for StartNode {
147- /// type Params = DefaultParams;
148147/// type Storage = MemoryStore;
149148/// type PrepResult = String;
150149/// type ExecResult = bool;
@@ -169,7 +168,6 @@ where
169168///
170169/// #[async_trait]
171170/// impl Node<WorkflowState> for ProcessNode {
172- /// type Params = DefaultParams;
173171/// type Storage = MemoryStore;
174172/// type PrepResult = i32;
175173/// type ExecResult = i32;
@@ -375,7 +373,6 @@ mod tests {
375373 use super :: * ;
376374 use crate :: store:: { MemoryStore , StoreTrait } ;
377375 use async_trait:: async_trait;
378- use std:: collections:: HashMap ;
379376 use std:: sync:: Arc ;
380377 use std:: sync:: atomic:: { AtomicU32 , Ordering } ;
381378 use tokio;
@@ -414,7 +411,6 @@ mod tests {
414411
415412 #[ async_trait]
416413 impl Node < TestState > for SuccessNode {
417- type Params = HashMap < String , String > ;
418414 type Storage = MemoryStore ;
419415 type PrepResult = String ;
420416 type ExecResult = bool ;
@@ -465,7 +461,6 @@ mod tests {
465461
466462 #[ async_trait]
467463 impl Node < TestState > for FailureNode {
468- type Params = HashMap < String , String > ;
469464 type Storage = MemoryStore ;
470465 type PrepResult = String ;
471466 type ExecResult = bool ;
@@ -507,7 +502,6 @@ mod tests {
507502
508503 #[ async_trait]
509504 impl Node < TestState > for DataStoringNode {
510- type Params = HashMap < String , String > ;
511505 type Storage = MemoryStore ;
512506 type PrepResult = ( ) ;
513507 type ExecResult = String ;
@@ -557,7 +551,6 @@ mod tests {
557551
558552 #[ async_trait]
559553 impl Node < TestState > for ConditionalNode {
560- type Params = HashMap < String , String > ;
561554 type Storage = MemoryStore ;
562555 type PrepResult = String ;
563556 type ExecResult = bool ;
0 commit comments