@@ -112,9 +112,9 @@ public void SetValue_ModifiesOriginalDocument_Object()
112112
113113 document . _json . Should ( ) . BeOfType < JObject > ( )
114114 . Which . Should ( ) . ContainKey ( "nested" )
115- . WhichValue . Should ( ) . BeOfType < JObject > ( )
115+ . WhoseValue . Should ( ) . BeOfType < JObject > ( )
116116 . Which . Should ( ) . ContainKey ( "another" )
117- . WhichValue . Should ( ) . BeOfType < JValue > ( )
117+ . WhoseValue . Should ( ) . BeOfType < JValue > ( )
118118 . Which . Value . Should ( ) . Be ( "something else" ) ;
119119 }
120120
@@ -127,9 +127,9 @@ public void SetValue_ModifiesOriginalDocument_Array()
127127
128128 document . _json . Should ( ) . BeOfType < JObject > ( )
129129 . Which . Should ( ) . ContainKey ( "nested" )
130- . WhichValue . Should ( ) . BeOfType < JObject > ( )
130+ . WhoseValue . Should ( ) . BeOfType < JObject > ( )
131131 . Which . Should ( ) . ContainKey ( "another" )
132- . WhichValue . Should ( ) . BeOfType < JValue > ( )
132+ . WhoseValue . Should ( ) . BeOfType < JValue > ( )
133133 . Which . Value . Should ( ) . Be ( "something else" ) ;
134134 }
135135
@@ -235,7 +235,7 @@ public void SetValue_CreatesNestedStructure_Multi()
235235 . Which . Should ( ) . ContainSingle ( )
236236 . Which . Should ( ) . BeOfType < JObject > ( )
237237 . Which . Should ( ) . ContainKey ( "nested" )
238- . WhichValue . Should ( ) . BeOfType < JValue > ( )
238+ . WhoseValue . Should ( ) . BeOfType < JValue > ( )
239239 . Which . Value . Should ( ) . Be ( "value" ) ;
240240 }
241241
@@ -248,7 +248,7 @@ public void Remove_ModifiesOriginalDocument_Property()
248248
249249 document . _json . Should ( ) . BeOfType < JObject > ( )
250250 . Which . Should ( ) . ContainKey ( "nested" )
251- . WhichValue . Should ( ) . BeOfType < JObject > ( )
251+ . WhoseValue . Should ( ) . BeOfType < JObject > ( )
252252 . Which . Should ( ) . NotContainKey ( "another" )
253253 . And . ContainKey ( "extra" ) ;
254254 }
@@ -262,7 +262,7 @@ public void Remove_ModifiesOriginalDocument_Array()
262262
263263 document . _json . Should ( ) . BeOfType < JObject > ( )
264264 . Which . Should ( ) . ContainKey ( "nested" )
265- . WhichValue . Should ( ) . BeOfType < JArray > ( )
265+ . WhoseValue . Should ( ) . BeOfType < JArray > ( )
266266 . Which . Should ( ) . BeEmpty ( ) ;
267267 }
268268
0 commit comments