@@ -237,13 +237,13 @@ public async Task Test1()
237237 TestContext . WriteLine ( Operator . Modulo ( 5 ) ) ;
238238 TestContext . WriteLine ( Operator . Power ( 2 ) ) ;
239239 TestContext . WriteLine ( Operator . Power ( 3 , 100 ) ) ;
240- TestContext . WriteLine ( Operator . ArrayAppend ( new List < string > { "item1" , "item2" } ) ) ;
241- TestContext . WriteLine ( Operator . ArrayPrepend ( new List < string > { "first" , "second" } ) ) ;
240+ TestContext . WriteLine ( Operator . ArrayAppend ( new List < object > { "item1" , "item2" } ) ) ;
241+ TestContext . WriteLine ( Operator . ArrayPrepend ( new List < object > { "first" , "second" } ) ) ;
242242 TestContext . WriteLine ( Operator . ArrayInsert ( 0 , "newItem" ) ) ;
243243 TestContext . WriteLine ( Operator . ArrayRemove ( "oldItem" ) ) ;
244244 TestContext . WriteLine ( Operator . ArrayUnique ( ) ) ;
245- TestContext . WriteLine ( Operator . ArrayIntersect ( new List < string > { "a" , "b" , "c" } ) ) ;
246- TestContext . WriteLine ( Operator . ArrayDiff ( new List < string > { "x" , "y" } ) ) ;
245+ TestContext . WriteLine ( Operator . ArrayIntersect ( new List < object > { "a" , "b" , "c" } ) ) ;
246+ TestContext . WriteLine ( Operator . ArrayDiff ( new List < object > { "x" , "y" } ) ) ;
247247 TestContext . WriteLine ( Operator . ArrayFilter ( Condition . Equal , "test" ) ) ;
248248 TestContext . WriteLine ( Operator . Concat ( "suffix" ) ) ;
249249 TestContext . WriteLine ( Operator . Replace ( "old" , "new" ) ) ;
0 commit comments