Skip to content

Commit

Permalink
Fix clippy lints for aws/sdk/integration-tests
Browse files Browse the repository at this point in the history
Fix clippy::redundant_clone
  • Loading branch information
Nugine committed Jan 21, 2023
1 parent f8bbe8b commit f1fffe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/sdk/integration-tests/s3/tests/endpoints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fn test_client(update_builder: fn(Builder) -> Builder) -> (CaptureRequestReceive
let sdk_config = SdkConfig::builder()
.credentials_provider(SharedCredentialsProvider::new(Credentials::for_tests()))
.region(Region::new("us-west-4"))
.http_connector(conn.clone())
.http_connector(conn)
.build();
let client = Client::from_conf(update_builder(Builder::from(&sdk_config)).build());
(captured_request, client)
Expand Down

0 comments on commit f1fffe7

Please sign in to comment.