File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ pub trait RequestExt {
121
121
/// Configures instance with query string parameters under #[cfg(test)] configurations
122
122
///
123
123
/// This is intended for use in mock testing contexts.
124
- #[ cfg( test) ]
125
124
fn with_query_string_parameters < Q > ( self , parameters : Q ) -> Self
126
125
where
127
126
Q : Into < StrMap > ;
@@ -137,7 +136,6 @@ pub trait RequestExt {
137
136
/// Configures instance with path parameters under #[cfg(test)] configurations
138
137
///
139
138
/// This is intended for use in mock testing contexts.
140
- #[ cfg( test) ]
141
139
fn with_path_parameters < P > ( self , parameters : P ) -> Self
142
140
where
143
141
P : Into < StrMap > ;
@@ -182,7 +180,6 @@ impl RequestExt for http::Request<Body> {
182
180
. unwrap_or_default ( )
183
181
}
184
182
185
- #[ cfg( test) ]
186
183
fn with_query_string_parameters < Q > ( self , parameters : Q ) -> Self
187
184
where
188
185
Q : Into < StrMap > ,
@@ -199,7 +196,6 @@ impl RequestExt for http::Request<Body> {
199
196
. unwrap_or_default ( )
200
197
}
201
198
202
- #[ cfg( test) ]
203
199
fn with_path_parameters < P > ( self , parameters : P ) -> Self
204
200
where
205
201
P : Into < StrMap > ,
You can’t perform that action at this time.
0 commit comments