Skip to content

Commit

Permalink
style: lint unecessary dereference
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Jun 25, 2024
1 parent b06a5f8 commit ce45c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async fn completion_with_different_aa_api_token() {
let task = TaskCompletion::from_text("Hello", 1);

let model = "luminous-base";
let client = Client::new(&bad_aa_api_token).unwrap();
let client = Client::new(bad_aa_api_token).unwrap();
let response = client
.output_of(
&task.with_model(model),
Expand Down

0 comments on commit ce45c6c

Please sign in to comment.