Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed May 15, 2024
1 parent 1144026 commit 55340ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/service/http/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ mod tests {

// Assert
assert_eq!(builder.middleware.len(), 1);
assert!(builder.middleware.get("test").is_some());
assert!(builder.middleware.contains_key("test"));
}

#[test]
Expand Down Expand Up @@ -293,7 +293,7 @@ mod tests {

// Assert
assert_eq!(builder.initializers.len(), 1);
assert!(builder.initializers.get("test").is_some());
assert!(builder.initializers.contains_key("test"));
}

#[test]
Expand Down

0 comments on commit 55340ff

Please sign in to comment.