fix typo in events test assert message (#2821)

Fixing a 1-character typo in the failure message of an `assert_eq!` in the events tests.
This commit is contained in:
taryn 2021-09-13 17:37:51 +00:00
parent 9effc3e9b3
commit b91541b6ef

View file

@ -508,7 +508,7 @@ mod tests {
assert_eq!(
get_events(&events, &mut reader_missed),
vec![event_2],
"reader_missed missed events unread after to update() calls"
"reader_missed missed events unread after two update() calls"
);
}