summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/mod.rs')
-rw-r--r--ipfs-api/src/response/mod.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/ipfs-api/src/response/mod.rs b/ipfs-api/src/response/mod.rs
index 2f70c28..0f00a80 100644
--- a/ipfs-api/src/response/mod.rs
+++ b/ipfs-api/src/response/mod.rs
@@ -45,17 +45,17 @@ pub use self::version::*;
///
#[cfg(test)]
macro_rules! deserialize_test {
- ($f:ident, $ty:ident) => (
+ ($f: ident, $ty: ident) => {
#[test]
fn $f() {
let raw = include_str!(concat!("tests/", stringify!($f), ".json"));
match ::serde_json::from_str::<super::$ty>(raw) {
Ok(_) => assert!(true),
- Err(e) => assert!(false, format!("failed with error: {}", e))
+ Err(e) => assert!(false, format!("failed with error: {}", e)),
};
}
- )
+ };
}
mod add;
@@ -99,5 +99,6 @@ pub struct IpfsHeader {
pub hash: String,
pub size: u64,
- #[serde(rename = "Type")] pub typ: Option<String>,
+ #[serde(rename = "Type")]
+ pub typ: Option<String>,
}