Skip to content

Commit 76329d7

Browse files
committed
chore: fix format
1 parent ce12fe7 commit 76329d7

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

tests/servers/api/v1/contract/context/torrent.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,11 @@ async fn should_fail_getting_torrents_when_the_offset_query_parameter_cannot_be_
189189
)
190190
.await;
191191

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;
193197
}
194198

195199
env.stop().await;
@@ -213,7 +217,11 @@ async fn should_fail_getting_torrents_when_the_limit_query_parameter_cannot_be_p
213217
)
214218
.await;
215219

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;
217225
}
218226

219227
env.stop().await;

0 commit comments

Comments
 (0)