We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5220b commit be566e0Copy full SHA for be566e0
src/webserver/database/sqlpage_functions/s3.rs
@@ -178,14 +178,9 @@ mod tests {
178
// Presigning is a local operation for the most part, but it needs credentials.
179
let client = get_s3_client(&config).await;
180
181
- let url = get_from_s3_with_client(
182
- &config,
183
- &client,
184
- None,
185
- Cow::Borrowed("my-file.txt"),
186
- )
187
- .await
188
- .unwrap();
+ let url = get_from_s3_with_client(&config, &client, None, Cow::Borrowed("my-file.txt"))
+ .await
+ .unwrap();
189
190
assert!(url.contains("my-bucket"));
191
assert!(url.contains("my-file.txt"));
0 commit comments