Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
shohamazon committed Aug 7, 2024
1 parent 35497f8 commit d108128
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions redis/tests/test_cluster_async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1979,13 +1979,12 @@ mod cluster_async {
respond_startup_with_replica_using_config(name, received_cmd, None)?;
if port == 6381 {
return Err(Ok(Value::Okay));
} else {
return Err(Err((
ErrorKind::NotBusy,
"No scripts in execution right now",
)
.into()));
}
Err(Err((
ErrorKind::NotBusy,
"No scripts in execution right now",
)
.into()))
},
);

Expand Down

0 comments on commit d108128

Please sign in to comment.