File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
arangodb-net-standard.Test/Serialization Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -163,10 +163,10 @@ public void Serialize_ShouldNotCamelCaseBindVars_WhenSerializingPostCursorBody()
163163
164164 string jsonString = Encoding . UTF8 . GetString ( jsonBytes ) ;
165165
166- Assert . Contains ( "DontCamelCaseMe" , jsonString ) ;
167166 Assert . Contains ( "DontCamelCaseKey" , jsonString ) ;
168- Assert . DoesNotContain ( "dontCamelCaseMe" , jsonString ) ;
169167 Assert . DoesNotContain ( "dontCamelCaseKey" , jsonString ) ;
168+ Assert . Contains ( "dontCamelCaseMe" , jsonString ) ;
169+ Assert . DoesNotContain ( "DontCamelCaseMe" , jsonString ) ;
170170 }
171171
172172 [ Fact ]
@@ -186,10 +186,10 @@ public void Serialize_ShouldNotCamelCaseParams_WhenSerializingPostTransactionBod
186186
187187 string jsonString = Encoding . UTF8 . GetString ( jsonBytes ) ;
188188
189- Assert . Contains ( "DontCamelCaseMe" , jsonString ) ;
190189 Assert . Contains ( "DontCamelCaseKey" , jsonString ) ;
191- Assert . DoesNotContain ( "dontCamelCaseMe" , jsonString ) ;
192190 Assert . DoesNotContain ( "dontCamelCaseKey" , jsonString ) ;
191+ Assert . Contains ( "dontCamelCaseMe" , jsonString ) ;
192+ Assert . DoesNotContain ( "DontCamelCaseMe" , jsonString ) ;
193193 }
194194
195195 [ Fact ]
You can’t perform that action at this time.
0 commit comments