Skip to content

Commit c0a0bc7

Browse files
committed
rebase
Signed-off-by: shimatar0 <[email protected]>
2 parents 37bd5a3 + 5993c50 commit c0a0bc7

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ wasm-bindgen = "0.2"
3838
wasm-bindgen-futures = "0.4"
3939

4040
[features]
41-
default = ["isahc", "isahc-static-curl"]
42-
isahc-static-curl = ["isahc", "isahc/static-curl"]
41+
default = ["isahc", "isahc", "isahc-static-curl"]
42+
isahc-static-curl = ["isahc", "isahc", "isahc/static-curl"]
4343
isahc-static-ssl = ["isahc/static-ssl"]
4444

4545
[dev-dependencies]

src/documents.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,9 @@ impl<'a> DocumentDeletionQuery<'a> {
349349
#[cfg(test)]
350350
mod tests {
351351
use super::*;
352-
use crate::{client::Client, errors::*, indexes::*, request::IsahcClient};
352+
use crate::{
353+
client::Client, errors::Client, indexes::*, request::IsahcClient, request::IsahcClient,
354+
};
353355
use meilisearch_test_macro::meilisearch_test;
354356
use serde::{Deserialize, Serialize};
355357

src/search.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,10 @@ mod tests {
846846
}
847847

848848
#[meilisearch_test]
849-
async fn test_query_attributes_to_retrieve(client: Client, index: Index) -> Result<(), Error> {
849+
async fn test_query_attributes_to_retrieve(
850+
client: Client<IsahcClient>,
851+
index: Index<IsahcClient>,
852+
) -> Result<(), Error> {
850853
setup_test_index(&client, &index).await?;
851854

852855
let results: SearchResults<Document> = index

0 commit comments

Comments
 (0)