events: Rename ZoomLevel::value to get

This commit is contained in:
Kévin Commaille 2022-03-28 19:17:22 +02:00 committed by Kévin Commaille
parent f3b2b7bce3
commit 47bb788dc2
2 changed files with 3 additions and 3 deletions

View File

@ -149,7 +149,7 @@ impl ZoomLevel {
} }
/// The value of this `ZoomLevel`. /// The value of this `ZoomLevel`.
pub fn value(&self) -> UInt { pub fn get(&self) -> UInt {
self.0 self.0
} }
} }

View File

@ -149,7 +149,7 @@ fn zoomlevel_deserialization_pass() {
LocationContent { LocationContent {
zoom_level: Some(zoom_level), zoom_level: Some(zoom_level),
.. ..
} if zoom_level.value() == uint!(16) } if zoom_level.get() == uint!(16)
); );
} }
@ -222,7 +222,7 @@ fn message_event_deserialization() {
&& message.find_html().is_none() && message.find_html().is_none()
&& uri == "geo:51.5008,0.1247;u=35" && uri == "geo:51.5008,0.1247;u=35"
&& description == "Alice's whereabouts" && description == "Alice's whereabouts"
&& zoom_level.value() == uint!(4) && zoom_level.get() == uint!(4)
&& ts == MilliSecondsSinceUnixEpoch(uint!(1_636_829_458)) && ts == MilliSecondsSinceUnixEpoch(uint!(1_636_829_458))
&& origin_server_ts == MilliSecondsSinceUnixEpoch(uint!(134_829_848)) && origin_server_ts == MilliSecondsSinceUnixEpoch(uint!(134_829_848))
&& room_id == room_id!("!roomid:notareal.hs") && room_id == room_id!("!roomid:notareal.hs")