File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -507,22 +507,6 @@ public void VeryLongString()
507507 paths . Should ( ) . BeEquivalentTo ( expected ) ;
508508 }
509509
510- [ Test ]
511- public void NullInArray ( )
512- {
513- var json = """{ "items": [1, null, 3] }""" ;
514- var paths = FlattenJson ( json ) ;
515-
516- var expected = new [ ]
517- {
518- new JsonPath ( "items[0]" , 1 , JsonType . Number ) ,
519- new JsonPath ( "items[1]" , 3 , JsonType . Number ) ,
520- new JsonPath ( "items.Length" , 3 , JsonType . Number )
521- } ;
522-
523- paths . Should ( ) . BeEquivalentTo ( expected ) ;
524- }
525-
526510 [ Test ]
527511 public void NullInNestedObject ( )
528512 {
@@ -538,7 +522,6 @@ public void NullInNestedObject()
538522 paths . Should ( ) . BeEquivalentTo ( expected ) ;
539523 }
540524
541-
542525 private static List < JsonPath > FlattenJson ( string json )
543526 {
544527 // TODO: call flattening function
You can’t perform that action at this time.
0 commit comments