summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-09-09 14:24:30 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-09-10 21:19:38 +0300
commitc6c0da7fcb4b8fd0ec6be4fe7cbbfb98c1d62c24 (patch)
tree1edd63ca7f298943e00eec78a61f8852781b898a /tests
parentd14f26569e6d2253310516431cfe54647a02e314 (diff)
melib: cleanup commit
Cleanup melib module exports, add some document tests, change some documentation.
Diffstat (limited to 'tests')
-rw-r--r--tests/generating_email.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/generating_email.rs b/tests/generating_email.rs
index 04b94a9d..e44a2d0c 100644
--- a/tests/generating_email.rs
+++ b/tests/generating_email.rs
@@ -9,7 +9,7 @@ fn build_draft() {
.expect("Could not open test_image.gif.");
if let Ok(mime_type) = query_mime_info("./tests/test_image.gif") {
match attachment.content_type {
- melib::email::ContentType::Other { ref mut tag, .. } => {
+ melib::email::attachment_types::ContentType::Other { ref mut tag, .. } => {
*tag = mime_type;
}
_ => {}