Add tests for bind in the handler

This commit is contained in:
Valentin Tolmer
2021-04-11 22:01:24 +02:00
parent 49404b24d7
commit 71045b08fe
3 changed files with 40 additions and 31 deletions

View File

@@ -358,7 +358,6 @@ mod tests {
display_name: "Bôb Böbberson".to_string(),
first_name: "Bôb".to_string(),
last_name: "Böbberson".to_string(),
creation_date: NaiveDateTime::from_timestamp(1_000_000_000, 0),
},
User {
user_id: "jim".to_string(),
@@ -366,7 +365,6 @@ mod tests {
display_name: "Jimminy Cricket".to_string(),
first_name: "Jim".to_string(),
last_name: "Cricket".to_string(),
creation_date: NaiveDateTime::from_timestamp(1_003_000_000, 0),
},
])
});