clean project

This commit is contained in:
mpostma 2021-03-12 14:57:24 +01:00
parent c4846dafca
commit 2ee2e6a9b2
No known key found for this signature in database
GPG key ID: CBC8A7C1D7A28C3A
9 changed files with 0 additions and 970 deletions

View file

@ -36,7 +36,6 @@ async fn test_partial_update() {
let server = Server::new().await;
let index = server.index("test");
let (response, _code) = index.update_settings(json!({"displayedAttributes": ["foo"]})).await;
println!("response: {}", response);
index.wait_update_id(0).await;
let (response, code) = index.settings().await;
assert_eq!(code, 200);
@ -44,7 +43,6 @@ async fn test_partial_update() {
assert_eq!(response["searchableAttributes"],json!(["*"]));
let (response, _) = index.update_settings(json!({"searchableAttributes": ["bar"]})).await;
println!("resp: {}", response);
index.wait_update_id(1).await;
let (response, code) = index.settings().await;
@ -96,7 +94,6 @@ async fn update_setting_unexisting_index_invalid_uid() {
let server = Server::new().await;
let index = server.index("test##! ");
let (_response, code) = index.update_settings(json!({})).await;
println!("response: {}", _response);
assert_eq!(code, 400);
}