File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -785,8 +785,7 @@ mod tests {
785785 add_test_units ( & mut sister) ;
786786
787787 // Ground a claim with known symbols
788- let result =
789- agentic_sdk:: prelude:: Grounding :: ground ( & sister, "process_payment" ) . unwrap ( ) ;
788+ let result = agentic_sdk:: prelude:: Grounding :: ground ( & sister, "process_payment" ) . unwrap ( ) ;
790789 // Should find the function
791790 assert ! (
792791 result. status == GroundingStatus :: Verified || result. status == GroundingStatus :: Partial ,
@@ -796,8 +795,7 @@ mod tests {
796795
797796 // Ground a claim with unknown symbol
798797 let result =
799- agentic_sdk:: prelude:: Grounding :: ground ( & sister, "totally_fake_function_xyz" )
800- . unwrap ( ) ;
798+ agentic_sdk:: prelude:: Grounding :: ground ( & sister, "totally_fake_function_xyz" ) . unwrap ( ) ;
801799 assert_eq ! ( result. status, GroundingStatus :: Ungrounded ) ;
802800 }
803801
@@ -807,8 +805,7 @@ mod tests {
807805 add_test_units ( & mut sister) ;
808806
809807 let evidence =
810- agentic_sdk:: prelude:: Grounding :: evidence ( & sister, "process_payment" , 10 )
811- . unwrap ( ) ;
808+ agentic_sdk:: prelude:: Grounding :: evidence ( & sister, "process_payment" , 10 ) . unwrap ( ) ;
812809 assert ! (
813810 !evidence. is_empty( ) ,
814811 "Expected evidence for 'process_payment'"
You can’t perform that action at this time.
0 commit comments