File tree 1 file changed +10
-2
lines changed
tests/servers/api/v1/contract/context
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,11 @@ async fn should_fail_getting_torrents_when_the_offset_query_parameter_cannot_be_
189
189
)
190
190
. await ;
191
191
192
- assert_bad_request ( response, "Failed to deserialize query string: offset: invalid digit found in string" ) . await ;
192
+ assert_bad_request (
193
+ response,
194
+ "Failed to deserialize query string: offset: invalid digit found in string" ,
195
+ )
196
+ . await ;
193
197
}
194
198
195
199
env. stop ( ) . await ;
@@ -213,7 +217,11 @@ async fn should_fail_getting_torrents_when_the_limit_query_parameter_cannot_be_p
213
217
)
214
218
. await ;
215
219
216
- assert_bad_request ( response, "Failed to deserialize query string: limit: invalid digit found in string" ) . await ;
220
+ assert_bad_request (
221
+ response,
222
+ "Failed to deserialize query string: limit: invalid digit found in string" ,
223
+ )
224
+ . await ;
217
225
}
218
226
219
227
env. stop ( ) . await ;
You can’t perform that action at this time.
0 commit comments