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 c2af820 commit 326540eCopy full SHA for 326540e
1 file changed
tests/deduplicate_hardlinks.rs
@@ -45,18 +45,16 @@ fn multiple_hardlinks_to_a_single_file_with_deduplication() {
45
.pipe(JsonTree::<Bytes>::try_from)
46
.expect("get tree of bytes");
47
48
- let actual_size = tree.size;
49
-
50
let file_size = workspace
51
.join("file.txt")
52
.pipe_as_ref(read_apparent_size)
53
.pipe(Bytes::new);
54
+ let actual_size = tree.size;
55
let expected_size = workspace
56
57
.pipe(Bytes::new)
58
.add(file_size);
59
60
assert_eq!(actual_size, expected_size);
61
62
let actual_children = {
0 commit comments