We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69fba79 commit 7bfa1c1Copy full SHA for 7bfa1c1
primitives/src/ipfs.rs
@@ -204,7 +204,6 @@ mod test {
204
)
205
};
206
207
-
208
for &ipfs_str in TESTS_IPFS_V0.iter() {
209
check(ipfs_str, cid::Version::V0)
210
}
@@ -214,7 +213,10 @@ mod test {
214
213
215
216
// v0 != v1
217
- assert_ne!(IPFS::try_from(TESTS_IPFS_V0[0]), IPFS::try_from(TESTS_IPFS_V1[0]))
+ assert_ne!(
+ IPFS::try_from(TESTS_IPFS_V0[0]),
218
+ IPFS::try_from(TESTS_IPFS_V1[0])
219
+ )
220
221
222
#[test]
0 commit comments