You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One test fenced with feature http1 fails like this when tested with cargo test --no-default-features --features http1:
error[E0599]: no method named `build` found for struct `ConnectorBuilder` in the current scope
--> src/connector/builder.rs:271:14
|
27 | pub struct ConnectorBuilder<State>(State);
| ------------------------------------------ method `build` not found for this
...
271 | .build();
| ^^^^^ method not found in `ConnectorBuilder<WantsProtocols2>`
Apparently that test additionally requires feature2, or need to be rewritten somehow.
The text was updated successfully, but these errors were encountered:
One test fenced with feature
http1
fails like this when tested withcargo test --no-default-features --features http1
:Apparently that test additionally requires feature2, or need to be rewritten somehow.
The text was updated successfully, but these errors were encountered: