test(base): 🐛 `in` actually tested

feat/lang-upgrades-keys
Tomáš Mládek 2023-10-08 12:50:14 +02:00
parent 6003eebbe8
commit f66857ca3b
1 changed files with 2 additions and 2 deletions

View File

@ -475,8 +475,8 @@ mod test {
assert_eq!(result.len(), 2);
let other_entity = Address::Uuid(uuid::Uuid::new_v4());
upend_insert_val!(connection, random_entity, ATTR_LABEL, "BAZQUX").unwrap();
upend_insert_val!(connection, random_entity, "CHARGE", "POSITIVE").unwrap();
upend_insert_val!(connection, other_entity, ATTR_LABEL, "BAZQUX").unwrap();
upend_insert_val!(connection, other_entity, "CHARGE", "POSITIVE").unwrap();
let query = format!(r#"(matches (in @{random_entity} @{other_entity}) ? ?)"#)
.parse()