Update tests to use example.com instead of domain.com

because domain.com represents a business, while example.com is actually just an example domain
This commit is contained in:
Jonas Platte 2019-11-11 20:48:24 +01:00
parent d5d0393792
commit 4d17769b2b
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -405,7 +405,7 @@ mod tests {
"mimetype": "image/jpeg", "mimetype": "image/jpeg",
"size": 32 "size": 32
}, },
"thumbnail_url": "https://domain.com/image-thumbnail.jpg" "thumbnail_url": "https://example.com/image-thumbnail.jpg"
}, },
"thumbnail_info": { "thumbnail_info": {
"h": 16, "h": 16,
@ -413,8 +413,8 @@ mod tests {
"mimetype": "image/jpeg", "mimetype": "image/jpeg",
"size": 32 "size": 32
}, },
"thumbnail_url": "https://domain.com/image-thumbnail.jpg", "thumbnail_url": "https://example.com/image-thumbnail.jpg",
"url": "https://domain.com/image.jpg" "url": "https://example.com/image.jpg"
} }
}"#; }"#;
@ -470,7 +470,7 @@ mod tests {
image_info.thumbnail_info.unwrap().size.unwrap(), image_info.thumbnail_info.unwrap().size.unwrap(),
UInt::try_from(32).unwrap() UInt::try_from(32).unwrap()
); );
assert_eq!(event.content.url, "https://domain.com/image.jpg"); assert_eq!(event.content.url, "https://example.com/image.jpg");
assert_eq!(event.event_type, EventType::RoomAvatar); assert_eq!(event.event_type, EventType::RoomAvatar);
assert_eq!(event.state_key, ""); assert_eq!(event.state_key, "");
assert_eq!(event.sender.to_string(), "@example:localhost"); assert_eq!(event.sender.to_string(), "@example:localhost");