File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -459,10 +459,7 @@ mod tests {
459459 }
460460
461461 #[ derive( Debug , Clone , thiserror:: Error ) ]
462- pub enum MockPromptError {
463- #[ error( "Bad configuration: {0}" ) ]
464- BadConfig ( String ) ,
465- }
462+ pub enum MockPromptError { }
466463
467464 fn create_test_backend ( ) -> RocksDbBackend < MockConfig > {
468465 RocksDbBackend :: new ( ) . unwrap ( )
@@ -717,13 +714,17 @@ mod tests {
717714 // Retrieve fragments
718715 let retrieved_fragment1 = <RocksDbBackend < MockConfig > as TapestryChestHandler <
719716 MockConfig ,
720- > >:: get_tapestry_fragment ( & backend, tapestry_id. clone ( ) , Some ( 1 ) )
717+ > >:: get_tapestry_fragment (
718+ & backend, tapestry_id. clone ( ) , Some ( 1 )
719+ )
721720 . await
722721 . unwrap ( )
723722 . unwrap ( ) ;
724723 let retrieved_fragment2 = <RocksDbBackend < MockConfig > as TapestryChestHandler <
725724 MockConfig ,
726- > >:: get_tapestry_fragment ( & backend, tapestry_id. clone ( ) , Some ( 2 ) )
725+ > >:: get_tapestry_fragment (
726+ & backend, tapestry_id. clone ( ) , Some ( 2 )
727+ )
727728 . await
728729 . unwrap ( )
729730 . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments