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
493: Re-export public structures for better import path r=bidoubiwa a=adriantombu
# Pull Request
## Related issue
Fixes#246
## What does this PR do?
- I think the PR title is already self-explanatory 😄
## PR checklist
Please check if your PR fulfills the following requirements:
- [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)?
- [x] Have you read the contributing guidelines?
- [x] Have you made sure that the title is accurate and descriptive of the changes?
Thank you so much for contributing to Meilisearch!
Co-authored-by: Adrian Tombu <[email protected]>
let client = Client::new(format!("{}/hello",meilisearch_url),Some("masterKey"));
537
531
let index = client.index("test_get_documents_with_filter_wrong_ms_version");
538
532
539
533
let documents = DocumentsQuery::new(&index)
@@ -544,9 +538,11 @@ mod tests {
544
538
let error = documents.unwrap_err();
545
539
546
540
let message = Some("Hint: It might not be working because you're not up to date with the Meilisearch version that updated the get_documents_with method.".to_string());
547
-
let url = "http://localhost:7700/hello/indexes/test_get_documents_with_filter_wrong_ms_version/documents/fetch".to_string();
let displayed_error = "MeilisearchCommunicationError: The server responded with a 404. Hint: It might not be working because you're not up to date with the Meilisearch version that updated the get_documents_with method.\nurl: http://localhost:7700/hello/indexes/test_get_documents_with_filter_wrong_ms_version/documents/fetch";
545
+
let displayed_error = format!("MeilisearchCommunicationError: The server responded with a 404. Hint: It might not be working because you're not up to date with the Meilisearch version that updated the get_documents_with method.\nurl: {meilisearch_url}/hello/indexes/test_get_documents_with_filter_wrong_ms_version/documents/fetch");
0 commit comments