@@ -664,10 +664,10 @@ public void Can_execute_existing_Script_Blocks_in_Code_Statements_in_Code_Syntax
664664
665665 result = context . EvaluateCode ( code ) ;
666666 Assert . That ( result , Is . EquivalentTo ( new List < KeyValuePair < string , string > > {
667- new KeyValuePair < string , string > ( "Apples" , "2" ) ,
668- new KeyValuePair < string , string > ( "Oranges" , "3" ) ,
669- new KeyValuePair < string , string > ( "Grape Fruit" , "2" ) ,
670- new KeyValuePair < string , string > ( "Rock Melon" , "3" ) ,
667+ new ( "Apples" , "2" ) ,
668+ new ( "Oranges" , "3" ) ,
669+ new ( "Grape Fruit" , "2" ) ,
670+ new ( "Rock Melon" , "3" ) ,
671671 } ) ) ;
672672 Assert . That ( context . EvaluateCode ( code . Trim ( ) ) , Is . EquivalentTo ( ( List < KeyValuePair < string , string > > ) result ) ) ;
673673
@@ -681,10 +681,10 @@ public void Can_execute_existing_Script_Blocks_in_Code_Statements_in_Code_Syntax
681681 list |> return" ;
682682 result = context . EvaluateCode ( code ) ;
683683 Assert . That ( result , Is . EquivalentTo ( new List < List < string > > {
684- new List < string > { "Apples" , "2" , "2" } ,
685- new List < string > { "Oranges" , "3" , "3" } ,
686- new List < string > { "Grape Fruit" , "2" , "2" } ,
687- new List < string > { "Rock Melon" , "3" , "3" } ,
684+ new ( ) { "Apples" , "2" , "2" } ,
685+ new ( ) { "Oranges" , "3" , "3" } ,
686+ new ( ) { "Grape Fruit" , "2" , "2" } ,
687+ new ( ) { "Rock Melon" , "3" , "3" } ,
688688 } ) ) ;
689689 Assert . That ( context . EvaluateCode ( code . Trim ( ) ) , Is . EquivalentTo ( ( List < List < string > > ) result ) ) ;
690690
0 commit comments