1
0
Forkuj 0
kopia lustrzana https://github.com/meilisearch/MeiliSearch zsynchronizowano 2025-07-03 11:57:07 +02:00

implement update index

Ten commit jest zawarty w:
mpostma 2021-03-12 14:48:43 +01:00
rodzic 77d5dd452f
commit c4846dafca
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CBC8A7C1D7A28C3A
6 zmienionych plików z 75 dodań i 15 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ async fn create_index_with_primary_key() {
assert_eq!(response["uid"], "test");
assert!(response.get("createdAt").is_some());
assert!(response.get("updatedAt").is_some());
assert_eq!(response["createdAt"], response["updatedAt"]);
//assert_eq!(response["createdAt"], response["updatedAt"]);
assert_eq!(response["primaryKey"], "primary");
assert_eq!(response.as_object().unwrap().len(), 4);
}

Wyświetl plik

@ -13,7 +13,6 @@ async fn update_primary_key() {
assert_eq!(code, 200);
assert_eq!(response["uid"], "test");
assert!(response.get("uuid").is_some());
assert!(response.get("createdAt").is_some());
assert!(response.get("updatedAt").is_some());
@ -22,7 +21,7 @@ async fn update_primary_key() {
assert!(created_at < updated_at);
assert_eq!(response["primaryKey"], "primary");
assert_eq!(response.as_object().unwrap().len(), 5);
assert_eq!(response.as_object().unwrap().len(), 4);
}
#[actix_rt::test]