Skip to content

Commit

Permalink
fix new clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 committed Jun 18, 2024
1 parent 347b262 commit c5d0b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/harness/src/monolith.rs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ impl MonolithBuilder {
self.add_mock_http_raw(path, parts, body.into())
}

pub fn behavior(mut self, behavior: impl Behavior + Send + 'static) -> Self {
pub fn behavior(mut self, behavior: impl Behavior + 'static) -> Self {
self.behavior = Some(Box::new(behavior));
self
}
Expand Down

0 comments on commit c5d0b2e

Please sign in to comment.