mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	make cargo fmt&clippy happy
This commit is contained in:
		@@ -239,6 +239,7 @@ pub async fn update_documents(
 | 
			
		||||
    Ok(HttpResponse::Accepted().json(task))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#[allow(clippy::too_many_arguments)]
 | 
			
		||||
async fn document_addition(
 | 
			
		||||
    mime_type: Option<Mime>,
 | 
			
		||||
    index_scheduler: GuardedData<ActionPolicy<{ actions::DOCUMENTS_ADD }>, Data<IndexScheduler>>,
 | 
			
		||||
 
 | 
			
		||||
@@ -298,8 +298,9 @@ async fn replace_documents_bad_csv_delimiter() {
 | 
			
		||||
    }
 | 
			
		||||
    "###);
 | 
			
		||||
 | 
			
		||||
    let (response, code) =
 | 
			
		||||
        index.raw_add_documents("", Some("application/json"), &format!("?csvDelimiter={}", encode("🍰"))).await;
 | 
			
		||||
    let (response, code) = index
 | 
			
		||||
        .raw_add_documents("", Some("application/json"), &format!("?csvDelimiter={}", encode("🍰")))
 | 
			
		||||
        .await;
 | 
			
		||||
    snapshot!(code, @"400 Bad Request");
 | 
			
		||||
    snapshot!(json_string!(response), @r###"
 | 
			
		||||
    {
 | 
			
		||||
@@ -340,8 +341,13 @@ async fn update_documents_bad_csv_delimiter() {
 | 
			
		||||
    }
 | 
			
		||||
    "###);
 | 
			
		||||
 | 
			
		||||
    let (response, code) =
 | 
			
		||||
        index.raw_update_documents("", Some("application/json"), &format!("?csvDelimiter={}", encode("🍰"))).await;
 | 
			
		||||
    let (response, code) = index
 | 
			
		||||
        .raw_update_documents(
 | 
			
		||||
            "",
 | 
			
		||||
            Some("application/json"),
 | 
			
		||||
            &format!("?csvDelimiter={}", encode("🍰")),
 | 
			
		||||
        )
 | 
			
		||||
        .await;
 | 
			
		||||
    snapshot!(code, @"400 Bad Request");
 | 
			
		||||
    snapshot!(json_string!(response), @r###"
 | 
			
		||||
    {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user