Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions lambda-http/src/ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ pub trait RequestExt {
/// Configures instance with query string parameters under #[cfg(test)] configurations
///
/// This is intended for use in mock testing contexts.
#[cfg(test)]
fn with_query_string_parameters<Q>(self, parameters: Q) -> Self
where
Q: Into<StrMap>;
Expand All @@ -137,7 +136,6 @@ pub trait RequestExt {
/// Configures instance with path parameters under #[cfg(test)] configurations
///
/// This is intended for use in mock testing contexts.
#[cfg(test)]
fn with_path_parameters<P>(self, parameters: P) -> Self
where
P: Into<StrMap>;
Expand Down Expand Up @@ -182,7 +180,6 @@ impl RequestExt for http::Request<Body> {
.unwrap_or_default()
}

#[cfg(test)]
fn with_query_string_parameters<Q>(self, parameters: Q) -> Self
where
Q: Into<StrMap>,
Expand All @@ -199,7 +196,6 @@ impl RequestExt for http::Request<Body> {
.unwrap_or_default()
}

#[cfg(test)]
fn with_path_parameters<P>(self, parameters: P) -> Self
where
P: Into<StrMap>,
Expand Down